write_native_ref

Function write_native_ref 

Source
pub fn write_native_ref<Wrt, W, T>(writer: &mut Wrt, v: &T) -> Result<()>
where Wrt: Write + ?Sized, W: EndianWrite + From<T>, T: Clone,
Available on crate feature io-std only.
Expand description

Convenience wrapper over write_native when you only have a reference.

This clones the value and forwards to write_native.