pub struct CreateInvoiceAttachmentResponse {
pub attachment: Option<Box<InvoiceAttachment>>,
pub errors: Option<Vec<Error>>,
}Expand description
CreateInvoiceAttachmentResponse : Represents a CreateInvoiceAttachment response.
Fields§
§attachment: Option<Box<InvoiceAttachment>>§errors: Option<Vec<Error>>Information about errors encountered during the request.
Implementations§
Source§impl CreateInvoiceAttachmentResponse
impl CreateInvoiceAttachmentResponse
Sourcepub fn new() -> CreateInvoiceAttachmentResponse
pub fn new() -> CreateInvoiceAttachmentResponse
Represents a CreateInvoiceAttachment response.
Trait Implementations§
Source§impl Clone for CreateInvoiceAttachmentResponse
impl Clone for CreateInvoiceAttachmentResponse
Source§fn clone(&self) -> CreateInvoiceAttachmentResponse
fn clone(&self) -> CreateInvoiceAttachmentResponse
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 Default for CreateInvoiceAttachmentResponse
impl Default for CreateInvoiceAttachmentResponse
Source§fn default() -> CreateInvoiceAttachmentResponse
fn default() -> CreateInvoiceAttachmentResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateInvoiceAttachmentResponse
impl<'de> Deserialize<'de> for CreateInvoiceAttachmentResponse
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
impl StructuralPartialEq for CreateInvoiceAttachmentResponse
Auto Trait Implementations§
impl Freeze for CreateInvoiceAttachmentResponse
impl RefUnwindSafe for CreateInvoiceAttachmentResponse
impl Send for CreateInvoiceAttachmentResponse
impl Sync for CreateInvoiceAttachmentResponse
impl Unpin for CreateInvoiceAttachmentResponse
impl UnsafeUnpin for CreateInvoiceAttachmentResponse
impl UnwindSafe for CreateInvoiceAttachmentResponse
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