pub enum BranchError {
Show 16 variants
Empty,
SingleAt,
StartsWithDash,
StartsWithDot,
StartsWithSlash,
EndsWithSlash,
EndsWithDot,
EndsWithLock,
ContainsDoubleDot,
ContainsDoubleSlash,
ContainsAtBrace,
ComponentStartsWithDot,
ComponentEndsWithLock,
ContainsControlCharacter,
ContainsSpace,
ContainsForbiddenCharacter,
}Expand description
Errors that can occur when parsing a branch name.
Variants§
Empty
SingleAt
StartsWithDash
StartsWithDot
StartsWithSlash
EndsWithSlash
EndsWithDot
EndsWithLock
ContainsDoubleDot
ContainsDoubleSlash
ContainsAtBrace
ComponentStartsWithDot
ComponentEndsWithLock
ContainsControlCharacter
ContainsSpace
ContainsForbiddenCharacter
Trait 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 · 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
1.30.0 · 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
impl Copy for BranchError
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 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