pub trait EditAt: ReadAt + WriteAt { }
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.
ReadAt
WriteAt
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.