#[non_exhaustive]pub enum TokenToStringError {
UnknownTokenType,
InsufficientBufferSpace(c_int),
FromUtf8Error(FromUtf8Error),
}
Expand description
An error that can occur when converting a token to a string.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UnknownTokenType
the token type was unknown
InsufficientBufferSpace(c_int)
There was insufficient buffer space to convert the token to a string.
FromUtf8Error(FromUtf8Error)
The token was not valid utf8.
Trait Implementations§
Source§impl Clone for TokenToStringError
impl Clone for TokenToStringError
Source§fn clone(&self) -> TokenToStringError
fn clone(&self) -> TokenToStringError
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 TokenToStringError
impl Debug for TokenToStringError
Source§impl Display for TokenToStringError
impl Display for TokenToStringError
Source§impl Error for TokenToStringError
impl Error for TokenToStringError
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<FromUtf8Error> for TokenToStringError
impl From<FromUtf8Error> for TokenToStringError
Source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TokenToStringError
impl RefUnwindSafe for TokenToStringError
impl Send for TokenToStringError
impl Sync for TokenToStringError
impl Unpin for TokenToStringError
impl UnwindSafe for TokenToStringError
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