pub struct FulfillmentCollectionResponse {
pub warnings: Option<Box<WarningCollection>>,
pub problems: Option<Vec<Problem>>,
pub fulfillments: Option<Vec<Fulfillment>>,
pub issued_vouchers: Option<Vec<VoucherInformation>>,
pub _links: Option<Vec<Link>>,
}Fields§
§warnings: Option<Box<WarningCollection>>§problems: Option<Vec<Problem>>§fulfillments: Option<Vec<Fulfillment>>§issued_vouchers: Option<Vec<VoucherInformation>>§_links: Option<Vec<Link>>Java Property Name: ‘links’
Implementations§
Trait Implementations§
Source§impl Clone for FulfillmentCollectionResponse
impl Clone for FulfillmentCollectionResponse
Source§fn clone(&self) -> FulfillmentCollectionResponse
fn clone(&self) -> FulfillmentCollectionResponse
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 Default for FulfillmentCollectionResponse
impl Default for FulfillmentCollectionResponse
Source§fn default() -> FulfillmentCollectionResponse
fn default() -> FulfillmentCollectionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FulfillmentCollectionResponse
impl<'de> Deserialize<'de> for FulfillmentCollectionResponse
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 FulfillmentCollectionResponse
impl PartialEq for FulfillmentCollectionResponse
Source§fn eq(&self, other: &FulfillmentCollectionResponse) -> bool
fn eq(&self, other: &FulfillmentCollectionResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FulfillmentCollectionResponse
Auto Trait Implementations§
impl Freeze for FulfillmentCollectionResponse
impl RefUnwindSafe for FulfillmentCollectionResponse
impl Send for FulfillmentCollectionResponse
impl Sync for FulfillmentCollectionResponse
impl Unpin for FulfillmentCollectionResponse
impl UnsafeUnpin for FulfillmentCollectionResponse
impl UnwindSafe for FulfillmentCollectionResponse
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