pub struct LogLocation {
pub file_path: String,
pub func_path: String,
pub lineno: u32,
pub thread_id: ThreadId,
}
Fields§
§file_path: String
§func_path: String
§lineno: u32
§thread_id: ThreadId
Trait Implementations§
Source§impl Clone for LogLocation
impl Clone for LogLocation
Source§fn clone(&self) -> LogLocation
fn clone(&self) -> LogLocation
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 Debug for LogLocation
impl Debug for LogLocation
Source§impl PartialEq for LogLocation
impl PartialEq for LogLocation
impl StructuralPartialEq for LogLocation
Auto Trait Implementations§
impl Freeze for LogLocation
impl RefUnwindSafe for LogLocation
impl Send for LogLocation
impl Sync for LogLocation
impl Unpin for LogLocation
impl UnwindSafe for LogLocation
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