pub struct FromUtf8Error<A = Global>
where A: Allocator,
{ /* private fields */ }
Expand description

A possible error value when converting a String from a UTF-8 byte vector.

This type is the error type for the from_utf8 method on String. It is designed in such a way to carefully avoid reallocations: the into_bytes method will give back the byte vector that was used in the conversion attempt.

The Utf8Error type provided by std::str represents an error that may occur when converting a slice of u8s to a &str. In this sense, it’s an analogue to FromUtf8Error, and you can get one from a FromUtf8Error through the utf8_error method.

§Examples

use rune::alloc::{try_vec, String};

// some invalid bytes, in a vector
let bytes = try_vec![0, 159];

let value = String::from_utf8(bytes);

assert!(value.is_err());
assert_eq!(try_vec![0, 159], value.unwrap_err().into_bytes());

Implementations§

source§

impl<A> FromUtf8Error<A>
where A: Allocator,

source

pub fn as_bytes(&self) -> &[u8]

Returns a slice of u8s bytes that were attempted to convert to a String.

§Examples
use rune::alloc::{try_vec, String};

// some invalid bytes, in a vector
let bytes = try_vec![0, 159];

let value = String::from_utf8(bytes);

assert_eq!(&[0, 159], value.unwrap_err().as_bytes());
source

pub fn into_bytes(self) -> Vec<u8, A>

Returns the bytes that were attempted to convert to a String.

This method is carefully constructed to avoid allocation. It will consume the error, moving out the bytes, so that a copy of the bytes does not need to be made.

§Examples
use rune::alloc::{try_vec, String};

// some invalid bytes, in a vector
let bytes = try_vec![0, 159];

let value = String::from_utf8(bytes);

assert_eq!(try_vec![0, 159], value.unwrap_err().into_bytes());
source

pub fn utf8_error(&self) -> Utf8Error

Fetch a Utf8Error to get more details about the conversion failure.

The Utf8Error type provided by std::str represents an error that may occur when converting a slice of u8s to a &str. In this sense, it’s an analogue to FromUtf8Error. See its documentation for more details on using it.

§Examples
use rune::alloc::{try_vec, String};

// some invalid bytes, in a vector
let bytes = try_vec![0, 159];

let error = String::from_utf8(bytes).unwrap_err().utf8_error();

// the first byte is invalid here
assert_eq!(1, error.valid_up_to());

Trait Implementations§

source§

impl Any for FromUtf8Error

source§

fn type_hash() -> Hash

The type hash of the type. Read more
source§

impl<A> Debug for FromUtf8Error<A>
where A: Allocator,

source§

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

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

impl<A> Display for FromUtf8Error<A>
where A: Allocator,

source§

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

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

impl<A> Error for FromUtf8Error<A>
where A: Allocator,

1.30.0 · source§

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

👎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 InstallWith for FromUtf8Error

source§

fn install_with(module: &mut Module) -> Result<(), ContextError>

Hook to install more things into the module.
source§

impl MaybeTypeOf for FromUtf8Error

source§

fn maybe_type_of() -> Option<FullTypeOf>

Type information for the given type.
source§

impl Named for FromUtf8Error

source§

const BASE_NAME: RawStr = _

The generic name of the named thing.
source§

fn full_name() -> Box<str>

The exact type name
source§

impl<A> PartialEq for FromUtf8Error<A>
where A: Allocator,

source§

fn eq(&self, other: &FromUtf8Error<A>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TypeOf for FromUtf8Error

source§

fn type_hash() -> Hash

Get full type hash, including type parameters.
source§

fn type_parameters() -> Hash

Hash of type parameters.
source§

fn type_info() -> TypeInfo

Access diagnostical information on the value type.
source§

fn type_of() -> FullTypeOf

Type information for the given type.
source§

impl UnsafeToMut for FromUtf8Error

§

type Guard = RawMut

The raw guard returned. Read more
source§

unsafe fn unsafe_to_mut<'a>( value: Value ) -> VmResult<(&'a mut Self, Self::Guard)>

Safety Read more
source§

impl UnsafeToRef for FromUtf8Error

§

type Guard = RawRef

The raw guard returned. Read more
source§

unsafe fn unsafe_to_ref<'a>(value: Value) -> VmResult<(&'a Self, Self::Guard)>

Safety Read more
source§

impl UnsafeToValue for &FromUtf8Error

§

type Guard = SharedPointerGuard

The type used to guard the unsafe value conversion.
source§

unsafe fn unsafe_to_value(self) -> VmResult<(Value, Self::Guard)>

Convert into a value. Read more
source§

impl UnsafeToValue for &mut FromUtf8Error

§

type Guard = SharedPointerGuard

The type used to guard the unsafe value conversion.
source§

unsafe fn unsafe_to_value(self) -> VmResult<(Value, Self::Guard)>

Convert into a value. Read more
source§

impl<A> Eq for FromUtf8Error<A>
where A: Allocator,

Auto Trait Implementations§

§

impl<A> RefUnwindSafe for FromUtf8Error<A>
where A: RefUnwindSafe,

§

impl<A> Send for FromUtf8Error<A>
where A: Send,

§

impl<A> Sync for FromUtf8Error<A>
where A: Sync,

§

impl<A> Unpin for FromUtf8Error<A>
where A: Unpin,

§

impl<A> UnwindSafe for FromUtf8Error<A>
where A: 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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromValue for T
where T: Any,

source§

fn from_value(value: Value) -> VmResult<T>

Try to convert to the given type, from the given value.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T> ToValue for T
where T: Any,

source§

fn to_value(self) -> VmResult<Value>

Convert into a value.
source§

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

§

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>,

§

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.
source§

impl<T> TryToString for T
where T: Display,

source§

fn try_to_string(&self) -> Result<String, Error>

Converts the given value to a String. Read more
source§

impl<T> UnsafeToValue for T
where T: ToValue,

§

type Guard = ()

The type used to guard the unsafe value conversion.
source§

unsafe fn unsafe_to_value( self ) -> VmResult<(Value, <T as UnsafeToValue>::Guard)>

Convert into a value. Read more
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more