pub enum GStringFromError<T> {
NoTrailingNul(GStringNoTrailingNulError<T>),
InteriorNul(GStringInteriorNulError<T>),
InvalidUtf8(GStringUtf8Error<T>),
Unspecified(T),
}
Expand description
Error type holding all possible failures when creating a GString
.
Variants§
NoTrailingNul(GStringNoTrailingNulError<T>)
InteriorNul(GStringInteriorNulError<T>)
InvalidUtf8(GStringUtf8Error<T>)
Unspecified(T)
Implementations§
Source§impl<T> GStringFromError<T>
impl<T> GStringFromError<T>
pub fn into_inner(self) -> T
Trait Implementations§
Source§impl<T: Debug> Debug for GStringFromError<T>
impl<T: Debug> Debug for GStringFromError<T>
Source§impl<T> Display for GStringFromError<T>
impl<T> Display for GStringFromError<T>
Source§impl<T> Error for GStringFromError<T>where
T: Debug,
impl<T> Error for GStringFromError<T>where
T: Debug,
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 GStringFromError<Vec<u8>>
impl From<FromUtf8Error> for GStringFromError<Vec<u8>>
Source§fn from(e: FromUtf8Error) -> Self
fn from(e: FromUtf8Error) -> Self
Converts to this type from the input type.
Source§impl<T> From<GStringInteriorNulError<T>> for GStringFromError<T>
impl<T> From<GStringInteriorNulError<T>> for GStringFromError<T>
Source§fn from(err: GStringInteriorNulError<T>) -> Self
fn from(err: GStringInteriorNulError<T>) -> Self
Converts to this type from the input type.
Source§impl<T> From<GStringNoTrailingNulError<T>> for GStringFromError<T>
impl<T> From<GStringNoTrailingNulError<T>> for GStringFromError<T>
Source§fn from(err: GStringNoTrailingNulError<T>) -> Self
fn from(err: GStringNoTrailingNulError<T>) -> Self
Converts to this type from the input type.
Source§impl<T> From<GStringUtf8Error<T>> for GStringFromError<T>
impl<T> From<GStringUtf8Error<T>> for GStringFromError<T>
Source§fn from(err: GStringUtf8Error<T>) -> Self
fn from(err: GStringUtf8Error<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for GStringFromError<T>where
T: Freeze,
impl<T> RefUnwindSafe for GStringFromError<T>where
T: RefUnwindSafe,
impl<T> Send for GStringFromError<T>where
T: Send,
impl<T> Sync for GStringFromError<T>where
T: Sync,
impl<T> Unpin for GStringFromError<T>where
T: Unpin,
impl<T> UnwindSafe for GStringFromError<T>where
T: UnwindSafe,
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