pub trait Get<'a>: Sized { fn get(i: &mut Iter<'a>) -> Option<Self>; }
Types that can be retrieved from a message as arguments implement this trait.
Performs the get operation.