Skip to main content

ValueTryAsArray

Trait ValueTryAsArray 

Source
pub trait ValueTryAsArray {
    type Array: Array;

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

try_as_* access to array value types

Required Associated Types§

Source

type Array: Array

The array structure

Required Methods§

Source

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

Tries to represent the value as an array and returns a reference to it

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