Struct glib::GStringUtf8Error
source · pub struct GStringUtf8Error<T>(_, _);
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
Self: Debug + Display,
impl<T> Error for GStringUtf8Error<T>where Self: Debug + Display,
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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(source: GStringUtf8Error<T>) -> Self
fn from(source: GStringUtf8Error<T>) -> Self
Converts to this type from the input type.
source§impl<T: PartialEq> PartialEq<GStringUtf8Error<T>> for GStringUtf8Error<T>
impl<T: PartialEq> PartialEq<GStringUtf8Error<T>> for GStringUtf8Error<T>
source§fn eq(&self, other: &GStringUtf8Error<T>) -> bool
fn eq(&self, other: &GStringUtf8Error<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T: Eq> Eq for GStringUtf8Error<T>
impl<T> StructuralEq for GStringUtf8Error<T>
impl<T> StructuralPartialEq for GStringUtf8Error<T>
Auto Trait Implementations§
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