pub struct DeleteSettingResponse;Expand description
Response for DeleteSetting command
Trait Implementations§
Source§impl Clone for DeleteSettingResponse
impl Clone for DeleteSettingResponse
Source§fn clone(&self) -> DeleteSettingResponse
fn clone(&self) -> DeleteSettingResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeleteSettingResponse
impl Debug for DeleteSettingResponse
Source§impl Default for DeleteSettingResponse
impl Default for DeleteSettingResponse
Source§fn default() -> DeleteSettingResponse
fn default() -> DeleteSettingResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteSettingResponse
impl<'de> Deserialize<'de> for DeleteSettingResponse
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 From<DeleteSettingResponse> for ()
impl From<DeleteSettingResponse> for ()
Source§fn from(_: DeleteSettingResponse)
fn from(_: DeleteSettingResponse)
Converts to this type from the input type.
Source§impl PartialEq for DeleteSettingResponse
impl PartialEq for DeleteSettingResponse
Source§fn eq(&self, other: &DeleteSettingResponse) -> bool
fn eq(&self, other: &DeleteSettingResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DeleteSettingResponse
impl StructuralPartialEq for DeleteSettingResponse
Auto Trait Implementations§
impl Freeze for DeleteSettingResponse
impl RefUnwindSafe for DeleteSettingResponse
impl Send for DeleteSettingResponse
impl Sync for DeleteSettingResponse
impl Unpin for DeleteSettingResponse
impl UnsafeUnpin for DeleteSettingResponse
impl UnwindSafe for DeleteSettingResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more