pub enum ParseAssetIdError {
ParseIntError(ParseIntError),
ZeroId,
}Variants§
ParseIntError(ParseIntError)
ZeroId
Trait Implementations§
Source§impl Clone for ParseAssetIdError
impl Clone for ParseAssetIdError
Source§fn clone(&self) -> ParseAssetIdError
fn clone(&self) -> ParseAssetIdError
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 ParseAssetIdError
impl Debug for ParseAssetIdError
Source§impl Display for ParseAssetIdError
impl Display for ParseAssetIdError
Source§impl Error for ParseAssetIdError
impl Error for ParseAssetIdError
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<ParseIntError> for ParseAssetIdError
impl From<ParseIntError> for ParseAssetIdError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ParseAssetIdError
impl PartialEq for ParseAssetIdError
impl Eq for ParseAssetIdError
impl StructuralPartialEq for ParseAssetIdError
Auto Trait Implementations§
impl Freeze for ParseAssetIdError
impl RefUnwindSafe for ParseAssetIdError
impl Send for ParseAssetIdError
impl Sync for ParseAssetIdError
impl Unpin for ParseAssetIdError
impl UnwindSafe for ParseAssetIdError
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