[−][src]Struct trackable::Location
The location of interest in source code files.
Typically this is created in the macros which defined in this crate.
Methods
impl Location[src]
pub fn new<M, F, T>(module_path: M, file: F, line: u32, message: T) -> Self where
M: Into<Cow<'static, str>>,
F: Into<Cow<'static, str>>,
T: Into<Cow<'static, str>>, [src]
M: Into<Cow<'static, str>>,
F: Into<Cow<'static, str>>,
T: Into<Cow<'static, str>>,
Makes a new Location instance.
Examples
use trackable::Location; let location = Location::new(module_path!(), file!(), line!(), "Hello".to_string()); assert_eq!(location.message(), "Hello");
pub fn crate_name(&self) -> &str[src]
Gets the crate name of this location.
pub fn module_path(&self) -> &str[src]
Gets the module path of this location.
pub fn file(&self) -> &str[src]
Gets the file name of this location.
pub fn line(&self) -> u32[src]
Gets the line of this location.
pub fn message(&self) -> &str[src]
Gets the message left at this location.
Trait Implementations
impl Clone for Location[src]
impl Debug for Location[src]
impl<'de> Deserialize<'de> for Location[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Display for Location[src]
impl Serialize for Location[src]
Auto Trait Implementations
impl RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnwindSafe for Location
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,