arrow_row::fixed

Trait FromSlice

source
pub trait FromSlice {
    // Required method
    fn from_slice(slice: &[u8], invert: bool) -> Self;
}

Required Methods§

source

fn from_slice(slice: &[u8], invert: bool) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

source§

impl<const N: usize> FromSlice for [u8; N]

source§

fn from_slice(slice: &[u8], invert: bool) -> Self

Implementors§