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

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

Serialize this value into the given Serde serializer. Read more

impl Clone for RepoReference

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RepoReference

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for RepoReference

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<RepoReference> for RepoReference

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

This method tests for !=.

Auto Trait Implementations