pub enum ComponentInstanceIdParseError {
Length(usize),
CanonicalHex,
}Expand description
ComponentInstanceIdParseError
Typed rejection for a non-canonical concrete Component identity.
Variants§
Trait Implementations§
Source§impl Clone for ComponentInstanceIdParseError
impl Clone for ComponentInstanceIdParseError
Source§fn clone(&self) -> ComponentInstanceIdParseError
fn clone(&self) -> ComponentInstanceIdParseError
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 moreimpl Eq for ComponentInstanceIdParseError
Source§impl Error for ComponentInstanceIdParseError
impl Error for ComponentInstanceIdParseError
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()
impl StructuralPartialEq for ComponentInstanceIdParseError
Auto Trait Implementations§
impl Freeze for ComponentInstanceIdParseError
impl RefUnwindSafe for ComponentInstanceIdParseError
impl Send for ComponentInstanceIdParseError
impl Sync for ComponentInstanceIdParseError
impl Unpin for ComponentInstanceIdParseError
impl UnsafeUnpin for ComponentInstanceIdParseError
impl UnwindSafe for ComponentInstanceIdParseError
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