Struct guidon::GitOptions[][src]

pub struct GitOptions { /* fields omitted */ }

GitOptions for git initialization. cf GitOptionsBuilder documentation.

A repo URL must be given Optional properties:

  • rev: a revision. master by default, can be a tag.
  • unsecure: set to true to skip certificate check
  • auto_proxy: set to true to let git discovers proxy configuration

Implementations

impl GitOptions[src]

pub fn builder() -> GitOptionsBuilder[src]

Get a builder for GitOptions

Trait Implementations

impl Clone for GitOptions[src]

impl Debug for GitOptions[src]

impl Default for GitOptions[src]

impl<'a> TryNew<GitOptions> for Guidon<'a>[src]

fn try_new(git: GitOptions) -> Result<Self>[src]

Initialization from a git repository The repo MUST contains at its root a template.toml file.

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,