pub struct GetInvoiceStatusResponse {
pub payload: Option<Box<ShipmentInvoiceStatusResponse>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetInvoiceStatusResponse : The response schema for the getInvoiceStatus operation.
Fields§
§payload: Option<Box<ShipmentInvoiceStatusResponse>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl GetInvoiceStatusResponse
impl GetInvoiceStatusResponse
Sourcepub fn new() -> GetInvoiceStatusResponse
pub fn new() -> GetInvoiceStatusResponse
The response schema for the getInvoiceStatus operation.
Trait Implementations§
Source§impl Clone for GetInvoiceStatusResponse
impl Clone for GetInvoiceStatusResponse
Source§fn clone(&self) -> GetInvoiceStatusResponse
fn clone(&self) -> GetInvoiceStatusResponse
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 GetInvoiceStatusResponse
impl Debug for GetInvoiceStatusResponse
Source§impl Default for GetInvoiceStatusResponse
impl Default for GetInvoiceStatusResponse
Source§fn default() -> GetInvoiceStatusResponse
fn default() -> GetInvoiceStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetInvoiceStatusResponse
impl<'de> Deserialize<'de> for GetInvoiceStatusResponse
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 GetInvoiceStatusResponse
impl PartialEq for GetInvoiceStatusResponse
Source§impl Serialize for GetInvoiceStatusResponse
impl Serialize for GetInvoiceStatusResponse
impl StructuralPartialEq for GetInvoiceStatusResponse
Auto Trait Implementations§
impl Freeze for GetInvoiceStatusResponse
impl RefUnwindSafe for GetInvoiceStatusResponse
impl Send for GetInvoiceStatusResponse
impl Sync for GetInvoiceStatusResponse
impl Unpin for GetInvoiceStatusResponse
impl UnwindSafe for GetInvoiceStatusResponse
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