pub enum ParametersError {
InvalidByte(u8),
}Expand description
The possible types of errors when parsing Parameters.
Variants§
InvalidByte(u8)
Use of an invalid byte when parsing Parameters.
Trait Implementations§
source§impl Clone for ParametersError
impl Clone for ParametersError
source§fn clone(&self) -> ParametersError
fn clone(&self) -> ParametersError
Returns a copy 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 ParametersError
impl Debug for ParametersError
source§impl PartialEq<ParametersError> for ParametersError
impl PartialEq<ParametersError> for ParametersError
source§fn eq(&self, other: &ParametersError) -> bool
fn eq(&self, other: &ParametersError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ParametersError
impl Eq for ParametersError
impl StructuralEq for ParametersError
impl StructuralPartialEq for ParametersError
Auto Trait Implementations§
impl RefUnwindSafe for ParametersError
impl Send for ParametersError
impl Sync for ParametersError
impl Unpin for ParametersError
impl UnwindSafe for ParametersError
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