pub struct VxMetadata {
pub name: Cow<'static, str>,
pub target: Cow<'static, str>,
pub level: Cow<'static, str>,
pub module_path: Option<Cow<'static, str>>,
pub file: Option<Cow<'static, str>>,
pub line: Option<u32>,
}Fields§
§name: Cow<'static, str>§target: Cow<'static, str>§level: Cow<'static, str>§module_path: Option<Cow<'static, str>>§file: Option<Cow<'static, str>>§line: Option<u32>Trait Implementations§
Source§impl Clone for VxMetadata
impl Clone for VxMetadata
Source§fn clone(&self) -> VxMetadata
fn clone(&self) -> VxMetadata
Returns a duplicate 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 Debug for VxMetadata
impl Debug for VxMetadata
Source§impl<'de> Deserialize<'de> for VxMetadata
impl<'de> Deserialize<'de> for VxMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&'static Metadata<'static>> for VxMetadata
impl From<&'static Metadata<'static>> for VxMetadata
Auto Trait Implementations§
impl Freeze for VxMetadata
impl RefUnwindSafe for VxMetadata
impl Send for VxMetadata
impl Sync for VxMetadata
impl Unpin for VxMetadata
impl UnwindSafe for VxMetadata
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