pub trait TwkbGeom: Debug + Sized {
// Provided methods
fn read_twkb<R: Read>(raw: &mut R) -> Result<Self, Error> { ... }
fn read_idlist<R: Read>(raw: &mut R, size: usize) -> Result<Vec<u64>, Error> { ... }
}Provided Methods§
fn read_twkb<R: Read>(raw: &mut R) -> Result<Self, Error>
fn read_idlist<R: Read>(raw: &mut R, size: usize) -> Result<Vec<u64>, Error>
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.