Skip to main content

ValueTryIntoArray

Trait ValueTryIntoArray 

Source
pub trait ValueTryIntoArray {
    type Array;

    // Required method
    fn try_into_array(self) -> Result<Self::Array, TryTypeError>;
}
Expand description

A trait that specifies how to turn the Value into it’s sub types with error handling

Required Associated Types§

Source

type Array

The type for Arrays

Required Methods§

Source

fn try_into_array(self) -> Result<Self::Array, TryTypeError>

Tries to turn the value into it’s array representation

§Errors

if the requested type doesn’t match the actual type

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§