pub struct Location {
pub module_path: &'static str,
pub file: &'static str,
pub line: u32,
}Expand description
Struct to store the location in the code (module path, file, and line)
Fields§
§module_path: &'static str§file: &'static str§line: u32Auto Trait Implementations§
impl Freeze for Location
impl RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnwindSafe for Location
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