pub struct PreviewIndividualInvoiceRequestBody {
pub password_manager: Box<IndividualPasswordManagerRequestModel>,
pub tax_information: Box<TaxInformationRequestModel>,
}
Fields§
§password_manager: Box<IndividualPasswordManagerRequestModel>
§tax_information: Box<TaxInformationRequestModel>
Implementations§
Source§impl PreviewIndividualInvoiceRequestBody
impl PreviewIndividualInvoiceRequestBody
pub fn new( password_manager: IndividualPasswordManagerRequestModel, tax_information: TaxInformationRequestModel, ) -> PreviewIndividualInvoiceRequestBody
Trait Implementations§
Source§impl Clone for PreviewIndividualInvoiceRequestBody
impl Clone for PreviewIndividualInvoiceRequestBody
Source§fn clone(&self) -> PreviewIndividualInvoiceRequestBody
fn clone(&self) -> PreviewIndividualInvoiceRequestBody
Returns a copy 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 Default for PreviewIndividualInvoiceRequestBody
impl Default for PreviewIndividualInvoiceRequestBody
Source§fn default() -> PreviewIndividualInvoiceRequestBody
fn default() -> PreviewIndividualInvoiceRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreviewIndividualInvoiceRequestBody
impl<'de> Deserialize<'de> for PreviewIndividualInvoiceRequestBody
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 PartialEq for PreviewIndividualInvoiceRequestBody
impl PartialEq for PreviewIndividualInvoiceRequestBody
Source§fn eq(&self, other: &PreviewIndividualInvoiceRequestBody) -> bool
fn eq(&self, other: &PreviewIndividualInvoiceRequestBody) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PreviewIndividualInvoiceRequestBody
Auto Trait Implementations§
impl Freeze for PreviewIndividualInvoiceRequestBody
impl RefUnwindSafe for PreviewIndividualInvoiceRequestBody
impl Send for PreviewIndividualInvoiceRequestBody
impl Sync for PreviewIndividualInvoiceRequestBody
impl Unpin for PreviewIndividualInvoiceRequestBody
impl UnwindSafe for PreviewIndividualInvoiceRequestBody
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