planus

Trait VectorRead

Source
pub trait VectorRead<'buf>: 'buf { }
Expand description

Trait used by generated code to read elements from vectors.

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<'buf> VectorRead<'buf> for bool

Source§

impl<'buf> VectorRead<'buf> for f32

Source§

impl<'buf> VectorRead<'buf> for f64

Source§

impl<'buf> VectorRead<'buf> for i16

Source§

impl<'buf> VectorRead<'buf> for i32

Source§

impl<'buf> VectorRead<'buf> for i64

Source§

impl<'buf> VectorRead<'buf> for u16

Source§

impl<'buf> VectorRead<'buf> for u32

Source§

impl<'buf> VectorRead<'buf> for u64

Source§

impl<'buf, T: VectorReadInner<'buf>, E> VectorRead<'buf> for Result<T, E>
where E: From<T::Error> + 'buf,

Implementors§