pub trait RealEstateListingTrait {
    // Required methods
    fn get_date_posted(&self) -> &[DatePostedProperty];
    fn take_date_posted(&mut self) -> Vec<DatePostedProperty>;
    fn get_lease_length(&self) -> &[LeaseLengthProperty];
    fn take_lease_length(&mut self) -> Vec<LeaseLengthProperty>;
}
Expand description

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

Required Methods§

Implementors§