pub struct CommitIdError(pub InvalidCommitId);Expand description
Error returned when parsing an invalid CommitId.
Tuple Fields§
§0: InvalidCommitIdTrait Implementations§
Source§impl Clone for CommitIdError
impl Clone for CommitIdError
Source§fn clone(&self) -> CommitIdError
fn clone(&self) -> CommitIdError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CommitIdError
impl Debug for CommitIdError
Source§impl Display for CommitIdError
impl Display for CommitIdError
Source§impl Error for CommitIdError
impl Error for CommitIdError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 PartialEq for CommitIdError
impl PartialEq for CommitIdError
Source§fn eq(&self, other: &CommitIdError) -> bool
fn eq(&self, other: &CommitIdError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CommitIdError
impl StructuralPartialEq for CommitIdError
Auto Trait Implementations§
impl Freeze for CommitIdError
impl RefUnwindSafe for CommitIdError
impl Send for CommitIdError
impl Sync for CommitIdError
impl Unpin for CommitIdError
impl UnsafeUnpin for CommitIdError
impl UnwindSafe for CommitIdError
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