pub trait RentActionTrait {
    // Required methods
    fn get_landlord(&self) -> &[LandlordProperty];
    fn take_landlord(&mut self) -> Vec<LandlordProperty>;
    fn get_real_estate_agent(&self) -> &[RealEstateAgentProperty];
    fn take_real_estate_agent(&mut self) -> Vec<RealEstateAgentProperty>;
}
Expand description

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

Required Methods§

Implementors§