pub struct Metadata<'a> { /* private fields */ }Expand description
Metadata about a vlog command.
§Use
Metadata structs are created when users of the library use
vlogging macros.
They are consumed by implementations of the VLog trait in the
enabled method.
Users should use the vlog_enabled! macro in their code to avoid
constructing expensive vlog messages.
Implementations§
Trait Implementations§
Source§impl<'a> Ord for Metadata<'a>
impl<'a> Ord for Metadata<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for Metadata<'a>
impl<'a> PartialOrd for Metadata<'a>
impl<'a> Eq for Metadata<'a>
impl<'a> StructuralPartialEq for Metadata<'a>
Auto Trait Implementations§
impl<'a> Freeze for Metadata<'a>
impl<'a> RefUnwindSafe for Metadata<'a>
impl<'a> Send for Metadata<'a>
impl<'a> Sync for Metadata<'a>
impl<'a> Unpin for Metadata<'a>
impl<'a> UnsafeUnpin for Metadata<'a>
impl<'a> UnwindSafe for Metadata<'a>
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