Struct sentry::protocol::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 Clone for RepoReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RepoReference
[src]

Formats the value using the given formatter. Read more

impl Serialize for RepoReference
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

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