pub struct BranchError(pub RefFormatError);Expand description
Error returned when parsing an invalid Branch.
Tuple Fields§
§0: RefFormatErrorTrait Implementations§
Source§impl Clone for BranchError
impl Clone for BranchError
Source§fn clone(&self) -> BranchError
fn clone(&self) -> BranchError
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 BranchError
impl Debug for BranchError
Source§impl Display for BranchError
impl Display for BranchError
Source§impl Error for BranchError
impl Error for BranchError
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 BranchError
impl PartialEq for BranchError
Source§fn eq(&self, other: &BranchError) -> bool
fn eq(&self, other: &BranchError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BranchError
impl StructuralPartialEq for BranchError
Auto Trait Implementations§
impl Freeze for BranchError
impl RefUnwindSafe for BranchError
impl Send for BranchError
impl Sync for BranchError
impl Unpin for BranchError
impl UnsafeUnpin for BranchError
impl UnwindSafe for BranchError
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