pub struct InvoiceCustomer {
pub id: String,
pub external_id: Option<String>,
}Expand description
Identifies the customer associated with an Invoice.
Fields§
§id: StringThe Orb-assigned unique identifier for the customer.
external_id: Option<String>The external identifier for the customer, if any.
Trait Implementations§
Source§impl Clone for InvoiceCustomer
impl Clone for InvoiceCustomer
Source§fn clone(&self) -> InvoiceCustomer
fn clone(&self) -> InvoiceCustomer
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 InvoiceCustomer
impl Debug for InvoiceCustomer
Source§impl<'de> Deserialize<'de> for InvoiceCustomer
impl<'de> Deserialize<'de> for InvoiceCustomer
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 Hash for InvoiceCustomer
impl Hash for InvoiceCustomer
Source§impl PartialEq for InvoiceCustomer
impl PartialEq for InvoiceCustomer
Source§impl Serialize for InvoiceCustomer
impl Serialize for InvoiceCustomer
impl Eq for InvoiceCustomer
impl StructuralPartialEq for InvoiceCustomer
Auto Trait Implementations§
impl Freeze for InvoiceCustomer
impl RefUnwindSafe for InvoiceCustomer
impl Send for InvoiceCustomer
impl Sync for InvoiceCustomer
impl Unpin for InvoiceCustomer
impl UnwindSafe for InvoiceCustomer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.