pub enum EndiannessError {
Unknown(String),
}
Expand description
An enumeration of errors which can occur while parsing the endianness environment variable
Variants§
Trait Implementations§
Source§impl Clone for EndiannessError
impl Clone for EndiannessError
Source§fn clone(&self) -> EndiannessError
fn clone(&self) -> EndiannessError
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EndiannessError
impl Debug for EndiannessError
Source§impl Display for EndiannessError
impl Display for EndiannessError
Source§impl From<EndiannessError> for EnvironmentError
impl From<EndiannessError> for EnvironmentError
Source§fn from(src: EndiannessError) -> EnvironmentError
fn from(src: EndiannessError) -> EnvironmentError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EndiannessError
impl RefUnwindSafe for EndiannessError
impl Send for EndiannessError
impl Sync for EndiannessError
impl Unpin for EndiannessError
impl UnwindSafe for EndiannessError
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