Struct sentry_types::protocol::v7::RepoReference[][src]

pub struct RepoReference {
    pub name: String,
    pub prefix: Option<String>,
    pub revision: Option<String>,
}

Represents a repository reference.

Fields

The name of the repository as it is registered in Sentry.

The optional prefix path to apply to source code when pairing it up with files in the repository.

The optional current revision of the local repository.

Trait Implementations

impl Debug for RepoReference
[src]

Formats the value using the given formatter. Read more

impl Clone for RepoReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RepoReference
[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