Enum spirt::DiagMsgPart
source · 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 DiagMsgPartwhere
Cow<'static, str>: From<__FromT0>,
impl<__FromT0> From<__FromT0> for DiagMsgPartwhere Cow<'static, str>: From<__FromT0>,
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<DiagMsgPart> for DiagMsgPart
impl PartialEq<DiagMsgPart> for DiagMsgPart
source§fn eq(&self, other: &DiagMsgPart) -> bool
fn eq(&self, other: &DiagMsgPart) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for DiagMsgPart
impl StructuralEq for DiagMsgPart
impl StructuralPartialEq for DiagMsgPart
Auto Trait Implementations§
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.