pub trait Put<A> { // Required method fn put(&mut self, _v: &A); }
Dual to Get, and the analogue of Serial. It allows writing sink.put(value) in contrast to value.serial(sink). It is less important than Get.
Get
Serial
sink.put(value)
value.serial(sink)