pub enum DiagMsgPart {
Plain(Cow<'static, str>),
Attrs(AttrSet),
Type(Type),
Const(Const),
QPtrUsage(QPtrUsage),
}
Expand description
One part of a Diag
nostic message, allowing rich interpolation.
Note: visit::Visitor
and transform::Transformer
do not interact
with any interpolated information, and it’s instead treated as “frozen” data.
Variants§
Trait Implementations§
source§impl Clone for DiagMsgPart
impl Clone for DiagMsgPart
source§fn clone(&self) -> DiagMsgPart
fn clone(&self) -> DiagMsgPart
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl From<AttrSet> for DiagMsgPart
impl From<AttrSet> for DiagMsgPart
source§fn from(original: AttrSet) -> DiagMsgPart
fn from(original: AttrSet) -> DiagMsgPart
Converts to this type from the input type.
source§impl From<Const> for DiagMsgPart
impl From<Const> for DiagMsgPart
source§fn from(original: Const) -> DiagMsgPart
fn from(original: Const) -> DiagMsgPart
Converts to this type from the input type.
source§impl From<QPtrUsage> for DiagMsgPart
impl From<QPtrUsage> for DiagMsgPart
source§fn from(original: QPtrUsage) -> DiagMsgPart
fn from(original: QPtrUsage) -> DiagMsgPart
Converts to this type from the input type.
source§impl From<Type> for DiagMsgPart
impl From<Type> for DiagMsgPart
source§fn from(original: Type) -> DiagMsgPart
fn from(original: Type) -> DiagMsgPart
Converts to this type from the input type.
source§impl<__FromT0> From<__FromT0> for DiagMsgPart
impl<__FromT0> From<__FromT0> for DiagMsgPart
source§fn from(original: __FromT0) -> DiagMsgPart
fn from(original: __FromT0) -> DiagMsgPart
Converts to this type from the input type.
source§impl Hash for DiagMsgPart
impl Hash for DiagMsgPart
source§impl PartialEq for DiagMsgPart
impl PartialEq for DiagMsgPart
impl Eq for DiagMsgPart
impl StructuralPartialEq for DiagMsgPart
Auto Trait Implementations§
impl Freeze for DiagMsgPart
impl RefUnwindSafe for DiagMsgPart
impl !Send for DiagMsgPart
impl !Sync for DiagMsgPart
impl Unpin for DiagMsgPart
impl UnwindSafe for DiagMsgPart
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more