Struct glib::GStringInteriorNulError
source · pub struct GStringInteriorNulError<T>(_, _);
Expand description
Error type indicating that a buffer had unexpected nul-bytes.
T
is the type of the value the conversion was attempted from.
Implementations§
source§impl<T> GStringInteriorNulError<T>
impl<T> GStringInteriorNulError<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 nul_error(&self) -> GStrInteriorNulError
pub fn nul_error(&self) -> GStrInteriorNulError
Fetch a GStrInteriorNulError
to get more details about the conversion failure.
Trait Implementations§
source§impl<T: Clone> Clone for GStringInteriorNulError<T>
impl<T: Clone> Clone for GStringInteriorNulError<T>
source§fn clone(&self) -> GStringInteriorNulError<T>
fn clone(&self) -> GStringInteriorNulError<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 GStringInteriorNulError<T>
impl<T: Debug> Debug for GStringInteriorNulError<T>
source§impl<T> Display for GStringInteriorNulError<T>
impl<T> Display for GStringInteriorNulError<T>
source§impl<T> Error for GStringInteriorNulError<T>where
Self: Debug + Display,
impl<T> Error for GStringInteriorNulError<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<GStringInteriorNulError<T>> for GStringFromError<T>
impl<T> From<GStringInteriorNulError<T>> for GStringFromError<T>
source§fn from(source: GStringInteriorNulError<T>) -> Self
fn from(source: GStringInteriorNulError<T>) -> Self
Converts to this type from the input type.
source§impl<T: PartialEq> PartialEq<GStringInteriorNulError<T>> for GStringInteriorNulError<T>
impl<T: PartialEq> PartialEq<GStringInteriorNulError<T>> for GStringInteriorNulError<T>
source§fn eq(&self, other: &GStringInteriorNulError<T>) -> bool
fn eq(&self, other: &GStringInteriorNulError<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T: Eq> Eq for GStringInteriorNulError<T>
impl<T> StructuralEq for GStringInteriorNulError<T>
impl<T> StructuralPartialEq for GStringInteriorNulError<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for GStringInteriorNulError<T>where T: RefUnwindSafe,
impl<T> Send for GStringInteriorNulError<T>where T: Send,
impl<T> Sync for GStringInteriorNulError<T>where T: Sync,
impl<T> Unpin for GStringInteriorNulError<T>where T: Unpin,
impl<T> UnwindSafe for GStringInteriorNulError<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