enum SpecIdParseErrorKind {
UnknownWowId {
wow_id: u32,
},
UnknownTomlKey {
value: String,
},
}Variants§
Trait Implementations§
Source§impl Debug for SpecIdParseErrorKind
impl Debug for SpecIdParseErrorKind
Source§impl Display for SpecIdParseErrorKind
impl Display for SpecIdParseErrorKind
Source§impl Error for SpecIdParseErrorKind
impl Error for SpecIdParseErrorKind
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()
Auto Trait Implementations§
impl Freeze for SpecIdParseErrorKind
impl RefUnwindSafe for SpecIdParseErrorKind
impl Send for SpecIdParseErrorKind
impl Sync for SpecIdParseErrorKind
impl Unpin for SpecIdParseErrorKind
impl UnsafeUnpin for SpecIdParseErrorKind
impl UnwindSafe for SpecIdParseErrorKind
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
§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of [
ToCompactString::to_compact_string()] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a [
CompactString]. Read more