Enum GStringFromError
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§
§impl<T> GStringFromError<T>
impl<T> GStringFromError<T>
pub fn into_inner(self) -> T
Trait Implementations§
§impl<T> Debug for GStringFromError<T>where
T: Debug,
impl<T> Debug for GStringFromError<T>where
T: Debug,
§impl<T> Display for GStringFromError<T>
impl<T> Display for GStringFromError<T>
§impl<T> Error for GStringFromError<T>where
T: Debug,
impl<T> Error for GStringFromError<T>where
T: Debug,
§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()
§impl From<FromUtf8Error> for GStringFromError<Vec<u8>>
impl From<FromUtf8Error> for GStringFromError<Vec<u8>>
§fn from(e: FromUtf8Error) -> GStringFromError<Vec<u8>>
fn from(e: FromUtf8Error) -> GStringFromError<Vec<u8>>
Converts to this type from the input type.
§impl<T> From<GStringInteriorNulError<T>> for GStringFromError<T>
impl<T> From<GStringInteriorNulError<T>> for GStringFromError<T>
§fn from(err: GStringInteriorNulError<T>) -> GStringFromError<T>
fn from(err: GStringInteriorNulError<T>) -> GStringFromError<T>
Converts to this type from the input type.
§impl<T> From<GStringNoTrailingNulError<T>> for GStringFromError<T>
impl<T> From<GStringNoTrailingNulError<T>> for GStringFromError<T>
§fn from(err: GStringNoTrailingNulError<T>) -> GStringFromError<T>
fn from(err: GStringNoTrailingNulError<T>) -> GStringFromError<T>
Converts to this type from the input type.
§impl<T> From<GStringUtf8Error<T>> for GStringFromError<T>
impl<T> From<GStringUtf8Error<T>> for GStringFromError<T>
§fn from(err: GStringUtf8Error<T>) -> GStringFromError<T>
fn from(err: GStringUtf8Error<T>) -> GStringFromError<T>
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§
§impl<T> AsErrorSource for Twhere
T: Error + 'static,
impl<T> AsErrorSource for Twhere
T: Error + 'static,
§fn as_error_source(&self) -> &(dyn Error + 'static)
fn as_error_source(&self) -> &(dyn Error + 'static)
For maximum effectiveness, this needs to be called as a method
to benefit from Rust’s automatic dereferencing of method
receivers.
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> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.