pub trait RentalCarReservationTrait {
    // Required methods
    fn get_dropoff_location(&self) -> &[DropoffLocationProperty];
    fn take_dropoff_location(&mut self) -> Vec<DropoffLocationProperty>;
    fn get_dropoff_time(&self) -> &[DropoffTimeProperty];
    fn take_dropoff_time(&mut self) -> Vec<DropoffTimeProperty>;
    fn get_pickup_location(&self) -> &[PickupLocationProperty];
    fn take_pickup_location(&mut self) -> Vec<PickupLocationProperty>;
    fn get_pickup_time(&self) -> &[PickupTimeProperty];
    fn take_pickup_time(&mut self) -> Vec<PickupTimeProperty>;
}
Expand description

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

Required Methods§

Implementors§