pub struct InvoiceLineItemPeriod {
pub end: i64,
pub start: i64,
}Expand description
Fields§
§end: i64The end of the period, which must be greater than or equal to the start. This value is inclusive.
start: i64The 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 Default for InvoiceLineItemPeriod
impl Default for InvoiceLineItemPeriod
Source§fn default() -> InvoiceLineItemPeriod
fn default() -> InvoiceLineItemPeriod
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoiceLineItemPeriod
impl<'de> Deserialize<'de> for InvoiceLineItemPeriod
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for InvoiceLineItemPeriod
impl Display 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