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