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