pub trait SignedVarInt: Sized + Copy {
// Required methods
fn write_signed<W: Write>(value: &Signed<Self>, w: &mut W);
fn read_signed<R: Read>(r: &mut R) -> Result<Signed<Self>, Error>;
}Required Methods§
fn write_signed<W: Write>(value: &Signed<Self>, w: &mut W)
fn read_signed<R: Read>(r: &mut R) -> Result<Signed<Self>, 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.