pub trait ShippingDeliveryTimeTrait {
    // Required methods
    fn get_business_days(&self) -> &[BusinessDaysProperty];
    fn take_business_days(&mut self) -> Vec<BusinessDaysProperty>;
    fn get_cutoff_time(&self) -> &[CutoffTimeProperty];
    fn take_cutoff_time(&mut self) -> Vec<CutoffTimeProperty>;
    fn get_handling_time(&self) -> &[HandlingTimeProperty];
    fn take_handling_time(&mut self) -> Vec<HandlingTimeProperty>;
    fn get_transit_time(&self) -> &[TransitTimeProperty];
    fn take_transit_time(&mut self) -> Vec<TransitTimeProperty>;
}
Expand description

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

Required Methods§

Implementors§