Enum git_wrapper::RefSearchError 
source · [−]pub enum RefSearchError {
    Failure(String),
    IOError(Error),
    NotFound,
    ParsingFailure(String),
    UTF8Decode(FromUtf8Error),
}Variants
Failure(String)
Thrown when git-ls-remote(1) fails to execute.
IOError(Error)
Generic IO error
NotFound
Failed to find reference
ParsingFailure(String)
git-ls-remote(1) returned garbage on STDOUT
UTF8Decode(FromUtf8Error)
Failed to decode strings
Trait Implementations
Performs the conversion.