pub enum AttributeOrNote {
Attribute((String, String)),
AttributeWithNote {
attribute: (String, String),
note: String,
},
Note(String),
}Variants§
Trait Implementations§
Source§impl Debug for AttributeOrNote
impl Debug for AttributeOrNote
Source§impl PartialEq for AttributeOrNote
impl PartialEq for AttributeOrNote
impl Eq for AttributeOrNote
impl StructuralPartialEq for AttributeOrNote
Auto Trait Implementations§
impl Freeze for AttributeOrNote
impl RefUnwindSafe for AttributeOrNote
impl Send for AttributeOrNote
impl Sync for AttributeOrNote
impl Unpin for AttributeOrNote
impl UnwindSafe for AttributeOrNote
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