Trait io_arrays::EditAt

source ·
pub trait EditAt: ReadAt + WriteAt { }
Expand description

A trait for reading and writing to arrays.

This trait simply combines ReadAt and WriteAt and has a blanket implementation for any type that implements both.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: ReadAt + WriteAt> EditAt for T