pub enum TagConversionError<'a> {
Tag(TagType, &'a str),
List(TagType, &'a str),
}
Available on crate feature
nbt
only.Variants§
Trait Implementations§
Source§impl<'a> Debug for TagConversionError<'a>
impl<'a> Debug for TagConversionError<'a>
Source§impl<'a> Display for TagConversionError<'a>
impl<'a> Display for TagConversionError<'a>
Source§impl<'a> Error for TagConversionError<'a>
impl<'a> Error for TagConversionError<'a>
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()
Auto Trait Implementations§
impl<'a> Freeze for TagConversionError<'a>
impl<'a> RefUnwindSafe for TagConversionError<'a>
impl<'a> Send for TagConversionError<'a>
impl<'a> Sync for TagConversionError<'a>
impl<'a> Unpin for TagConversionError<'a>
impl<'a> UnwindSafe for TagConversionError<'a>
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