rune::alloc::string

Struct FromUtf8Error

Source
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

Available on crate feature alloc only.
Source§

const ANY_TYPE_INFO: AnyTypeInfo = _

The compile-time type information know for the type.
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)>

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

Available on crate feature alloc only.
Source§

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

Hook to install more things into the module.
Source§

impl MaybeTypeOf for FromUtf8Error

Available on crate feature alloc only.
Source§

fn maybe_type_of() -> Result<DocType>

Type information for the given type.
Source§

impl Named for FromUtf8Error

Available on crate feature alloc only.
Source§

const ITEM: &'static Item = _

The name item.
Source§

fn full_name(f: &mut Formatter<'_>) -> Result

The exact type name
Source§

fn display() -> impl Display

Return a display wrapper for the named type.
Source§

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

Source§

fn eq(&self, other: &FromUtf8Error<A>) -> 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 TypeHash for FromUtf8Error

Available on crate feature alloc only.
Source§

const HASH: Hash = _

The complete type hash of the type including type parameters which uniquely identifiers a given type. Read more
Source§

impl TypeOf for FromUtf8Error

Available on crate feature alloc only.
Source§

const PARAMETERS: Hash = _

Type parameters for the type. Read more
Source§

const STATIC_TYPE_INFO: AnyTypeInfo = <Self as crate::Any>::ANY_TYPE_INFO

Access diagnostical type information for the current type. Read more
Source§

fn type_info() -> TypeInfo

Get type info associated with the current type.
Source§

impl UnsafeToMut for FromUtf8Error

Available on crate feature alloc only.
Source§

type Guard = RawValueGuard

The raw guard returned. Read more
Source§

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

Safety Read more
Source§

impl UnsafeToRef for FromUtf8Error

Available on crate feature alloc only.
Source§

type Guard = RawValueGuard

The raw guard returned. Read more
Source§

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

Safety Read more
Source§

impl UnsafeToValue for &FromUtf8Error

Available on crate feature alloc only.
Source§

type Guard = ValueRefGuard

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

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

Convert into a value. Read more
Source§

impl UnsafeToValue for &mut FromUtf8Error

Available on crate feature alloc only.
Source§

type Guard = ValueMutGuard

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

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

Convert into a value. Read more
Source§

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

Auto Trait Implementations§

§

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

§

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

Source§

fn from_value(value: Value) -> Result<T, RuntimeError>

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

Source§

type Output = T

Should always be Self
Source§

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

Source§

fn to_return(self) -> VmResult<Value>

Convert something into a return value.
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: AnyMarker,

Source§

fn to_value(self) -> Result<Value, RuntimeError>

Convert into a value.
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.
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,

Source§

type Guard = ()

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

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

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
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T