pub struct GStringInteriorNulError<T>(/* private fields */);
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
T: Debug,
impl<T> Error for GStringInteriorNulError<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<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: PartialEq> PartialEq for GStringInteriorNulError<T>
impl<T: PartialEq> PartialEq for GStringInteriorNulError<T>
impl<T: Eq> Eq for GStringInteriorNulError<T>
impl<T> StructuralPartialEq for GStringInteriorNulError<T>
Auto Trait Implementations§
impl<T> Freeze for GStringInteriorNulError<T>where
T: Freeze,
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
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
)