Trait ExtendView

Source
pub trait ExtendView {
    // Required method
    fn extend_with(&mut self, other: Self) -> Result<(), ExtendError>;
}
Expand description

Memory views can be extended with multiple contiguous reads

Required Methods§

Source

fn extend_with(&mut self, other: Self) -> Result<(), ExtendError>

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.

Implementors§