pub trait BufMutExt: BufMut {
type Final: Send + 'static;
// Required method
fn finalize(self) -> Self::Final;
// Provided methods
fn put_varint_u64(&mut self, v: u64)
where Self: Sized { ... }
fn put_varint_i64(&mut self, v: i64)
where Self: Sized { ... }
}Required Associated Types§
Required Methods§
Provided Methods§
fn put_varint_u64(&mut self, v: u64)where
Self: Sized,
fn put_varint_i64(&mut self, v: i64)where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".