Struct actix_tools::sentry::sentry_client::protocol::FileLocation[]

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 Serialize for FileLocation

Serialize this value into the given Serde serializer. Read more

impl Clone for FileLocation

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for FileLocation

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

impl Debug for FileLocation

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for FileLocation

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<FileLocation> for FileLocation

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

This method tests for !=.

Auto Trait Implementations