pub trait MayHaveInput {
// Required method
fn input(&self) -> Option<&[u8]>;
}Expand description
Trait for objects that may have input data.
pub trait MayHaveInput {
// Required method
fn input(&self) -> Option<&[u8]>;
}Trait for objects that may have input data.