Enum git_mirror::error::GitMirrorError
source · pub enum GitMirrorError {
GenericError(String),
GitError(GitError),
MirrorError(MirrorError),
SyncError(usize),
}Variants§
Trait Implementations§
source§impl Debug for GitMirrorError
impl Debug for GitMirrorError
source§impl Display for GitMirrorError
impl Display for GitMirrorError
source§impl Error for GitMirrorError
impl Error for GitMirrorError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<GitMirrorError> for i32
impl From<GitMirrorError> for i32
source§fn from(mirror: GitMirrorError) -> i32
fn from(mirror: GitMirrorError) -> i32
Converts to this type from the input type.
source§impl From<MirrorError> for GitMirrorError
impl From<MirrorError> for GitMirrorError
source§fn from(source: MirrorError) -> Self
fn from(source: MirrorError) -> Self
Converts to this type from the input type.