Enum git_whennes::error::Error [−][src]
pub enum Error {
NoMergeCommit {
for: String,
},
PicoArgsError(Error),
FindCommitError {
sha: String,
source: Error,
},
GraphDescendantOfError {
commit: String,
ancestory: String,
source: Error,
},
RevParseError {
sha: String,
source: Error,
},
ExpectedCommitError {
sha: String,
},
FindRemoteError {
remote: String,
source: Error,
},
Git2Error(Error),
}Variants
Fields of NoMergeCommit
for: StringPicoArgsError(Error)Tuple Fields of PicoArgsError
0: ErrorFields of ExpectedCommitError
sha: StringGit2Error(Error)Tuple Fields of Git2Error
0: ErrorTrait Implementations
The lower-level source of this error, if any. Read more
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
👎 Deprecated since 1.42.0:
use the Display impl or to_string()