Struct sentry_types::protocol::v7::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 Debug for FileLocation
[src]

Formats the value using the given formatter. Read more

impl Default for FileLocation
[src]

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

impl Clone for FileLocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for FileLocation
[src]

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

This method tests for !=.

Auto Trait Implementations