Struct sentry::protocol::FileLocation [] [src]

pub struct FileLocation {
    pub filename: Option<String>,
    pub abs_path: Option<String>,
    pub line: Option<u64>,
    pub column: Option<u64>,
}

Represents location information.

Fields

The filename (basename only).

If known the absolute path.

The line number if known.

The column number if known.

Trait Implementations

impl PartialEq<FileLocation> for FileLocation
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for FileLocation
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for FileLocation
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for FileLocation
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for FileLocation
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for FileLocation

impl Sync for FileLocation