pub enum ParseVolumeError {
ValueOutOfRange,
NotU16(String),
}Variants§
Trait Implementations§
Source§impl Clone for ParseVolumeError
impl Clone for ParseVolumeError
Source§fn clone(&self) -> ParseVolumeError
fn clone(&self) -> ParseVolumeError
Returns a duplicate 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 ParseVolumeError
impl Debug for ParseVolumeError
Source§impl Display for ParseVolumeError
impl Display for ParseVolumeError
Source§impl Error for ParseVolumeError
impl Error for ParseVolumeError
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 From<ParseVolumeError> for ParseActionError
impl From<ParseVolumeError> for ParseActionError
Source§fn from(e: ParseVolumeError) -> Self
fn from(e: ParseVolumeError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseVolumeError
impl PartialEq for ParseVolumeError
impl StructuralPartialEq for ParseVolumeError
Auto Trait Implementations§
impl Freeze for ParseVolumeError
impl RefUnwindSafe for ParseVolumeError
impl Send for ParseVolumeError
impl Sync for ParseVolumeError
impl Unpin for ParseVolumeError
impl UnwindSafe for ParseVolumeError
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