pub struct GStringUtf8Error<T>(/* private fields */);
Expand description
Error type indicating that a buffer had invalid UTF-8.
T
is the type of the value the conversion was attempted from.
Implementations§
Source§impl<T> GStringUtf8Error<T>
impl<T> GStringUtf8Error<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Returns the original value that was attempted to convert to GString
.
Sourcepub fn utf8_error(&self) -> Utf8Error
pub fn utf8_error(&self) -> Utf8Error
Fetch a Utf8Error
to get more details about the conversion
failure.
Trait Implementations§
Source§impl<T: Clone> Clone for GStringUtf8Error<T>
impl<T: Clone> Clone for GStringUtf8Error<T>
Source§fn clone(&self) -> GStringUtf8Error<T>
fn clone(&self) -> GStringUtf8Error<T>
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<T: Debug> Debug for GStringUtf8Error<T>
impl<T: Debug> Debug for GStringUtf8Error<T>
Source§impl<T> Display for GStringUtf8Error<T>
impl<T> Display for GStringUtf8Error<T>
Source§impl<T> Error for GStringUtf8Error<T>where
T: Debug,
impl<T> Error for GStringUtf8Error<T>where
T: Debug,
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()
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.
Source§impl<T: PartialEq> PartialEq for GStringUtf8Error<T>
impl<T: PartialEq> PartialEq for GStringUtf8Error<T>
impl<T: Eq> Eq for GStringUtf8Error<T>
impl<T> StructuralPartialEq for GStringUtf8Error<T>
Auto Trait Implementations§
impl<T> Freeze for GStringUtf8Error<T>where
T: Freeze,
impl<T> RefUnwindSafe for GStringUtf8Error<T>where
T: RefUnwindSafe,
impl<T> Send for GStringUtf8Error<T>where
T: Send,
impl<T> Sync for GStringUtf8Error<T>where
T: Sync,
impl<T> Unpin for GStringUtf8Error<T>where
T: Unpin,
impl<T> UnwindSafe for GStringUtf8Error<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)