Enum jj_lib::git::GitRemoteManagementError
source · pub enum GitRemoteManagementError {
NoSuchRemote(String),
RemoteAlreadyExists(String),
RemoteReservedForLocalGitRepo,
InternalGitError(Error),
}
Variants§
NoSuchRemote(String)
RemoteAlreadyExists(String)
RemoteReservedForLocalGitRepo
InternalGitError(Error)
Trait Implementations§
source§impl Debug for GitRemoteManagementError
impl Debug for GitRemoteManagementError
source§impl Display for GitRemoteManagementError
impl Display for GitRemoteManagementError
source§impl Error for GitRemoteManagementError
impl Error for GitRemoteManagementError
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()
Auto Trait Implementations§
impl RefUnwindSafe for GitRemoteManagementError
impl Send for GitRemoteManagementError
impl Sync for GitRemoteManagementError
impl Unpin for GitRemoteManagementError
impl UnwindSafe for GitRemoteManagementError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more