pub struct CreateUploadDestinationResponse {
pub payload: Option<Box<UploadDestination>>,
pub errors: Option<Vec<Error>>,
}Expand description
CreateUploadDestinationResponse : The response schema for the createUploadDestination operation.
Fields§
§payload: Option<Box<UploadDestination>>§errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl CreateUploadDestinationResponse
impl CreateUploadDestinationResponse
Sourcepub fn new() -> CreateUploadDestinationResponse
pub fn new() -> CreateUploadDestinationResponse
The response schema for the createUploadDestination operation.
Trait Implementations§
Source§impl Clone for CreateUploadDestinationResponse
impl Clone for CreateUploadDestinationResponse
Source§fn clone(&self) -> CreateUploadDestinationResponse
fn clone(&self) -> CreateUploadDestinationResponse
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 CreateUploadDestinationResponse
impl Default for CreateUploadDestinationResponse
Source§fn default() -> CreateUploadDestinationResponse
fn default() -> CreateUploadDestinationResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateUploadDestinationResponse
impl<'de> Deserialize<'de> for CreateUploadDestinationResponse
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 CreateUploadDestinationResponse
impl PartialEq for CreateUploadDestinationResponse
Source§fn eq(&self, other: &CreateUploadDestinationResponse) -> bool
fn eq(&self, other: &CreateUploadDestinationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateUploadDestinationResponse
Auto Trait Implementations§
impl Freeze for CreateUploadDestinationResponse
impl RefUnwindSafe for CreateUploadDestinationResponse
impl Send for CreateUploadDestinationResponse
impl Sync for CreateUploadDestinationResponse
impl Unpin for CreateUploadDestinationResponse
impl UnsafeUnpin for CreateUploadDestinationResponse
impl UnwindSafe for CreateUploadDestinationResponse
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