pub trait ReadAll: Sized {
fn read(i: &mut Iter<'_>) -> Result<Self, TypeMismatchError>;
}
Expand description
Helper trait to read all arguments from a message.
Required Methods§
sourcefn read(i: &mut Iter<'_>) -> Result<Self, TypeMismatchError>
fn read(i: &mut Iter<'_>) -> Result<Self, TypeMismatchError>
Performs the read operation.