pub struct LineEntry {
pub log_target: String,
pub log_module_path: String,
pub log_file: String,
pub log_line: i64,
}Expand description
A line entry.
Fields§
§log_target: StringThe log target.
log_module_path: StringThe module path of the log.
log_file: StringThe file where the log was generated.
log_line: i64The line number in the file where the log was generated.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LineEntry
impl<'de> Deserialize<'de> for LineEntry
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
impl StructuralPartialEq for LineEntry
Auto Trait Implementations§
impl Freeze for LineEntry
impl RefUnwindSafe for LineEntry
impl Send for LineEntry
impl Sync for LineEntry
impl Unpin for LineEntry
impl UnwindSafe for LineEntry
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