Struct what_git::SCM[][src]

pub struct SCM {
    pub kind: SCMKind,
    pub base_url: String,
    pub owner: String,
    pub repo: String,
}

Used to describe the structure of a repository on a supported source control management (SCM) solution.

Fields

kind: SCMKindbase_url: String

The base URL used in API calls

owner: String

The user or organization space that owns the repository

repo: String

The name of the repository

Trait Implementations

impl Debug for SCM[src]

Auto Trait Implementations

impl RefUnwindSafe for SCM

impl Send for SCM

impl Sync for SCM

impl Unpin for SCM

impl UnwindSafe for SCM

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.