pub trait MoveActionTrait {
    // Required methods
    fn get_from_location(&self) -> &[FromLocationProperty];
    fn take_from_location(&mut self) -> Vec<FromLocationProperty>;
    fn get_to_location(&self) -> &[ToLocationProperty];
    fn take_to_location(&mut self) -> Vec<ToLocationProperty>;
}
Expand description

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

Required Methods§

Implementors§