pub trait OrderPacketMetadata {
// Required methods
fn is_ioc(&self) -> bool;
fn is_fok(&self) -> bool;
fn is_post_only(&self) -> bool;
fn no_deposit_or_withdrawal(&self) -> bool;
// Provided method
fn is_take_only(&self) -> bool { ... }
}