[][src]Struct revelio::Context

pub struct Context {
    pub build_url: String,
    pub sources_url: String,
    pub commit_sha1: String,
    pub commit_url: String,
    pub compare_url: String,
}

Contains public information about discoverability of a build and its sources

All URLs stored in these fields should be publicly accessible on the web (ie: not behind a paywall or requiring subscription to a free service).

Fields

build_url: String

URL of the build job on the CI platform

Example: https://travis-ci.com/47ng/revelio

sources_url: String

URL of the sources in the public repository

Example: https://github.com/47ng/revelio

commit_sha1: String

SHA-1 hash of the commit at the HEAD of that build

Example: 3f5dd7c301184862f5da07cde403bfdc7609e61a

commit_url: String

Public URL to the commit at the HEAD of that build

Example: https://github.com/47ng/revelio/commit/3f5dd7c301184862f5da07cde403bfdc7609e61a

compare_url: String

Public URL to a list of commits that were included in that build

Example: https://github.com/47ng/revelio/compare/c8eee0fa854a...3f5dd7c30118

Methods

impl Context[src]

pub fn from_env() -> Option<Self>[src]

Try to generate a Context by sniffing the environment

This will call the available CI sniffers in turn.

Trait Implementations

impl Debug for Context[src]

impl Serialize for Context[src]

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

Auto Trait Implementations

impl Send for Context

impl Sync for Context

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self