pub enum ArchitectureParseError {
Empty,
}Expand description
Error returned when parsing an architecture fails.
Variants§
Empty
The architecture name was empty after trimming whitespace.
Trait Implementations§
Source§impl Clone for ArchitectureParseError
impl Clone for ArchitectureParseError
Source§fn clone(&self) -> ArchitectureParseError
fn clone(&self) -> ArchitectureParseError
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 ArchitectureParseError
impl Debug for ArchitectureParseError
Source§impl Display for ArchitectureParseError
impl Display for ArchitectureParseError
Source§impl Error for ArchitectureParseError
impl Error for ArchitectureParseError
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 ArchitectureParseError
impl PartialEq for ArchitectureParseError
Source§fn eq(&self, other: &ArchitectureParseError) -> bool
fn eq(&self, other: &ArchitectureParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ArchitectureParseError
impl Eq for ArchitectureParseError
impl StructuralPartialEq for ArchitectureParseError
Auto Trait Implementations§
impl Freeze for ArchitectureParseError
impl RefUnwindSafe for ArchitectureParseError
impl Send for ArchitectureParseError
impl Sync for ArchitectureParseError
impl Unpin for ArchitectureParseError
impl UnsafeUnpin for ArchitectureParseError
impl UnwindSafe for ArchitectureParseError
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