pub enum DiagMsgPart {
Plain(Cow<'static, str>),
Attrs(AttrSet),
Type(Type),
Const(Const),
QPtrUsage(QPtrUsage),
}Expand description
One part of a Diagnostic 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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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§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