pub trait Encodable<W: IoWrite> {
// Required method
fn encode(&self, writer: &mut W) -> IoResult<usize>;
}
Expand description
Required Methods§
Implementations on Foreign Types§
Source§impl<T: Encodable<W> + ?Sized, W: IoWrite> Encodable<W> for &T
Allows encoding of &T
directly, forwarding calls to T::encode()
.
impl<T: Encodable<W> + ?Sized, W: IoWrite> Encodable<W> for &T
Allows encoding of &T
directly, forwarding calls to T::encode()
.