pub trait SendActionTrait {
    // Required methods
    fn get_delivery_method(&self) -> &[DeliveryMethodProperty];
    fn take_delivery_method(&mut self) -> Vec<DeliveryMethodProperty>;
    fn get_recipient(&self) -> &[RecipientProperty];
    fn take_recipient(&mut self) -> Vec<RecipientProperty>;
}
Expand description

This trait is for properties from https://schema.org/SendAction.

Required Methods§

Implementors§