Skip to main content

IntoStringError

Struct IntoStringError 

Source
pub struct IntoStringError<const N: usize, LenT = usize>
where LenT: LenType,
{ /* private fields */ }
Expand description

An error indicating invalid UTF-8 when converting a CString into a String.

This struct is created by CString::into_string().

Equivalent of std::ffi::IntoStringError.

Call Self::into_cstring to regain ownership of the CString.

§Examples

use heapless::CString;
use heapless::c_string::IntoStringError;

// the byte slice contains invalid UTF-8
let hello_world = CString::<16>::from_bytes_with_nul(b"Hello \xF0\x90\x80World\0").unwrap();
let hello_world_clone = hello_world.clone();

let err: IntoStringError<16> = hello_world.into_string().unwrap_err();

assert_eq!(err.utf8_error().valid_up_to(), 6);
assert_eq!(err.utf8_error().error_len(), Some(3));
assert_eq!(err.into_cstring(), hello_world_clone);

Implementations§

Source§

impl<const N: usize, LenT: LenType> IntoStringError<N, LenT>

Source

pub fn into_cstring(self) -> CString<N, LenT>

Consumes this error, returning original CString which generated the error.

Source

pub fn utf8_error(&self) -> Utf8Error

Access the underlying UTF-8 error that was the cause of this error.

Trait Implementations§

Source§

impl<const N: usize, LenT> Clone for IntoStringError<N, LenT>
where LenT: LenType + Clone,

Source§

fn clone(&self) -> IntoStringError<N, LenT>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const N: usize, LenT> Debug for IntoStringError<N, LenT>
where LenT: LenType + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const N: usize, LenT: LenType> Display for IntoStringError<N, LenT>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const N: usize, LenT: LenType> Error for IntoStringError<N, LenT>

Source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<const N: usize, LenT> PartialEq for IntoStringError<N, LenT>
where LenT: LenType + PartialEq,

Source§

fn eq(&self, other: &IntoStringError<N, LenT>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const N: usize, LenT> StructuralPartialEq for IntoStringError<N, LenT>
where LenT: LenType,

Auto Trait Implementations§

§

impl<const N: usize, LenT> Freeze for IntoStringError<N, LenT>
where LenT: Freeze,

§

impl<const N: usize, LenT> RefUnwindSafe for IntoStringError<N, LenT>
where LenT: RefUnwindSafe,

§

impl<const N: usize, LenT> Send for IntoStringError<N, LenT>

§

impl<const N: usize, LenT> Sync for IntoStringError<N, LenT>

§

impl<const N: usize, LenT> Unpin for IntoStringError<N, LenT>
where LenT: Unpin,

§

impl<const N: usize, LenT> UnsafeUnpin for IntoStringError<N, LenT>
where LenT: UnsafeUnpin,

§

impl<const N: usize, LenT> UnwindSafe for IntoStringError<N, LenT>
where LenT: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.