[][src]Struct git2::ProxyOptions

pub struct ProxyOptions<'a> { /* fields omitted */ }

Options which can be specified to various fetch operations.

Methods

impl<'a> ProxyOptions<'a>
[src]

pub fn new() -> ProxyOptions<'a>
[src]

Creates a new set of proxy options ready to be configured.

pub fn auto(&mut self) -> &mut Self
[src]

Try to auto-detect the proxy from the git configuration.

Note that this will override url specified before.

pub fn url(&mut self, url: &str) -> &mut Self
[src]

Specify the exact URL of the proxy to use.

Note that this will override auto specified before.

Trait Implementations

impl<'a> Default for ProxyOptions<'a>
[src]

Auto Trait Implementations

impl<'a> Send for ProxyOptions<'a>

impl<'a> Sync for ProxyOptions<'a>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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