pub struct InvoiceLineItemPeriod {
pub end: Timestamp,
pub start: Timestamp,
}
Fields§
§end: Timestamp
The end of the period, which must be greater than or equal to the start. This value is inclusive.
start: Timestamp
The start of the period. This value is inclusive.
Trait Implementations§
Source§impl Clone for InvoiceLineItemPeriod
impl Clone for InvoiceLineItemPeriod
Source§fn clone(&self) -> InvoiceLineItemPeriod
fn clone(&self) -> InvoiceLineItemPeriod
Returns a duplicate of the value. Read more
1.0.0 · 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 InvoiceLineItemPeriod
impl Debug for InvoiceLineItemPeriod
Source§impl Deserialize for InvoiceLineItemPeriod
impl Deserialize for InvoiceLineItemPeriod
Source§impl FromValueOpt for InvoiceLineItemPeriod
impl FromValueOpt for InvoiceLineItemPeriod
fn from_value(v: Value) -> Option<Self>
impl Copy for InvoiceLineItemPeriod
Auto Trait Implementations§
impl Freeze for InvoiceLineItemPeriod
impl RefUnwindSafe for InvoiceLineItemPeriod
impl Send for InvoiceLineItemPeriod
impl Sync for InvoiceLineItemPeriod
impl Unpin for InvoiceLineItemPeriod
impl UnwindSafe for InvoiceLineItemPeriod
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