pub struct ReleaseOfferRequestAsyncResponse {
pub warnings: Option<Box<WarningCollection>>,
pub problems: Option<Vec<Problem>>,
pub release_offer_ids: Option<Vec<String>>,
}Fields§
§warnings: Option<Box<WarningCollection>>§problems: Option<Vec<Problem>>§release_offer_ids: Option<Vec<String>>Ids of the release offers created asynchronously. Retrieve GET release-offers/{releaseOfferId} to poll the status
Implementations§
Trait Implementations§
Source§impl Clone for ReleaseOfferRequestAsyncResponse
impl Clone for ReleaseOfferRequestAsyncResponse
Source§fn clone(&self) -> ReleaseOfferRequestAsyncResponse
fn clone(&self) -> ReleaseOfferRequestAsyncResponse
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 ReleaseOfferRequestAsyncResponse
impl Default for ReleaseOfferRequestAsyncResponse
Source§fn default() -> ReleaseOfferRequestAsyncResponse
fn default() -> ReleaseOfferRequestAsyncResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseOfferRequestAsyncResponse
impl<'de> Deserialize<'de> for ReleaseOfferRequestAsyncResponse
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 ReleaseOfferRequestAsyncResponse
impl PartialEq for ReleaseOfferRequestAsyncResponse
Source§fn eq(&self, other: &ReleaseOfferRequestAsyncResponse) -> bool
fn eq(&self, other: &ReleaseOfferRequestAsyncResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReleaseOfferRequestAsyncResponse
Auto Trait Implementations§
impl Freeze for ReleaseOfferRequestAsyncResponse
impl RefUnwindSafe for ReleaseOfferRequestAsyncResponse
impl Send for ReleaseOfferRequestAsyncResponse
impl Sync for ReleaseOfferRequestAsyncResponse
impl Unpin for ReleaseOfferRequestAsyncResponse
impl UnwindSafe for ReleaseOfferRequestAsyncResponse
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