pub struct PriceRuleStack {
pub custom_data: Option<CustomData>,
pub duration: i64,
pub price_rule: Vec<PriceRule, 8usize>,
}Expand description
Part of ISO 15118-20 price schedule.
Fields§
§custom_data: Option<CustomData>§duration: i64Duration of the stack of price rules. he amount of seconds that define the duration of the given PriceRule(s).
price_rule: Vec<PriceRule, 8usize>Trait Implementations§
Source§impl Clone for PriceRuleStack
impl Clone for PriceRuleStack
Source§fn clone(&self) -> PriceRuleStack
fn clone(&self) -> PriceRuleStack
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PriceRuleStack
impl Debug for PriceRuleStack
impl Eq for PriceRuleStack
Source§impl PartialEq for PriceRuleStack
impl PartialEq for PriceRuleStack
impl StructuralPartialEq for PriceRuleStack
Auto Trait Implementations§
impl Freeze for PriceRuleStack
impl RefUnwindSafe for PriceRuleStack
impl Send for PriceRuleStack
impl Sync for PriceRuleStack
impl Unpin for PriceRuleStack
impl UnsafeUnpin for PriceRuleStack
impl UnwindSafe for PriceRuleStack
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more