pub struct GStringNoTrailingNulError<T>(/* private fields */);
Expand description
Error type indicating that a buffer did not have a trailing nul-byte.
T
is the type of the value the conversion was attempted from.
Implementations§
Source§impl<T> GStringNoTrailingNulError<T>
impl<T> GStringNoTrailingNulError<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Returns the original value that was attempted to convert to GString
.
Trait Implementations§
Source§impl<T: Clone> Clone for GStringNoTrailingNulError<T>
impl<T: Clone> Clone for GStringNoTrailingNulError<T>
Source§fn clone(&self) -> GStringNoTrailingNulError<T>
fn clone(&self) -> GStringNoTrailingNulError<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 GStringNoTrailingNulError<T>
impl<T: Debug> Debug for GStringNoTrailingNulError<T>
Source§impl<T> Display for GStringNoTrailingNulError<T>
impl<T> Display for GStringNoTrailingNulError<T>
Source§impl<T> Error for GStringNoTrailingNulError<T>where
T: Debug,
impl<T> Error for GStringNoTrailingNulError<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<GStringNoTrailingNulError<T>> for GStringFromError<T>
impl<T> From<GStringNoTrailingNulError<T>> for GStringFromError<T>
Source§fn from(err: GStringNoTrailingNulError<T>) -> Self
fn from(err: GStringNoTrailingNulError<T>) -> Self
Converts to this type from the input type.
Source§impl<T: PartialEq> PartialEq for GStringNoTrailingNulError<T>
impl<T: PartialEq> PartialEq for GStringNoTrailingNulError<T>
Source§fn eq(&self, other: &GStringNoTrailingNulError<T>) -> bool
fn eq(&self, other: &GStringNoTrailingNulError<T>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<T: Eq> Eq for GStringNoTrailingNulError<T>
impl<T> StructuralPartialEq for GStringNoTrailingNulError<T>
Auto Trait Implementations§
impl<T> Freeze for GStringNoTrailingNulError<T>where
T: Freeze,
impl<T> RefUnwindSafe for GStringNoTrailingNulError<T>where
T: RefUnwindSafe,
impl<T> Send for GStringNoTrailingNulError<T>where
T: Send,
impl<T> Sync for GStringNoTrailingNulError<T>where
T: Sync,
impl<T> Unpin for GStringNoTrailingNulError<T>where
T: Unpin,
impl<T> UnwindSafe for GStringNoTrailingNulError<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
)