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