[][src]Struct git2::Cred

pub struct Cred { /* fields omitted */ }

A structure to represent git credentials in libgit2.

Methods

impl Cred
[src]

pub fn default() -> Result<Cred, Error>
[src]

Create a "default" credential usable for Negotiate mechanisms like NTLM or Kerberos authentication.

pub fn ssh_key_from_agent(username: &str) -> Result<Cred, Error>
[src]

Create a new ssh key credential object used for querying an ssh-agent.

The username specified is the username to authenticate.

pub fn ssh_key(
    username: &str,
    publickey: Option<&Path>,
    privatekey: &Path,
    passphrase: Option<&str>
) -> Result<Cred, Error>
[src]

Create a new passphrase-protected ssh key credential object.

pub fn ssh_key_from_memory(
    username: &str,
    publickey: Option<&str>,
    privatekey: &str,
    passphrase: Option<&str>
) -> Result<Cred, Error>
[src]

Create a new ssh key credential object reading the keys from memory.

pub fn userpass_plaintext(username: &str, password: &str) -> Result<Cred, Error>
[src]

Create a new plain-text username and password credential object.

pub fn credential_helper(
    config: &Config,
    url: &str,
    username: Option<&str>
) -> Result<Cred, Error>
[src]

Attempt to read credential.helper according to gitcredentials(7) 1

This function will attempt to parse the user's credential.helper configuration, invoke the necessary processes, and read off what the username/password should be for a particular url.

The returned credential type will be a username/password credential if successful.

pub fn username(username: &str) -> Result<Cred, Error>
[src]

Create a credential to specify a username.

THis is used with ssh authentication to query for the username if non is specified in the url.

pub fn has_username(&self) -> bool
[src]

Check whether a credential object contains username information.

pub fn credtype(&self) -> git_credtype_t
[src]

Return the type of credentials that this object represents.

pub unsafe fn unwrap(self) -> *mut git_cred
[src]

Unwrap access to the underlying raw pointer, canceling the destructor

Trait Implementations

impl Drop for Cred
[src]

Auto Trait Implementations

impl !Send for Cred

impl !Sync for Cred

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]