[][src]Struct trackable::Location

pub struct Location { /* fields omitted */ }

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]

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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Location
[src]

impl Display for Location
[src]

impl Serialize for Location
[src]

impl<'de> Deserialize<'de> for Location
[src]

Auto Trait Implementations

impl Send for Location

impl Sync for Location

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]