pub struct PutSettingResponse {
pub ok: bool,
}Expand description
PutSettingResponse
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
}Fields§
§ok: boolImplementations§
Source§impl PutSettingResponse
impl PutSettingResponse
pub fn builder() -> PutSettingResponse
Trait Implementations§
Source§impl Clone for PutSettingResponse
impl Clone for PutSettingResponse
Source§fn clone(&self) -> PutSettingResponse
fn clone(&self) -> PutSettingResponse
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 PutSettingResponse
impl Debug for PutSettingResponse
Source§impl<'de> Deserialize<'de> for PutSettingResponse
impl<'de> Deserialize<'de> for PutSettingResponse
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<&PutSettingResponse> for PutSettingResponse
impl From<&PutSettingResponse> for PutSettingResponse
Source§fn from(value: &PutSettingResponse) -> Self
fn from(value: &PutSettingResponse) -> Self
Converts to this type from the input type.
Source§impl From<PutSettingResponse> for PutSettingResponse
impl From<PutSettingResponse> for PutSettingResponse
Source§fn from(value: PutSettingResponse) -> Self
fn from(value: PutSettingResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for PutSettingResponse
impl Serialize for PutSettingResponse
Source§impl TryFrom<PutSettingResponse> for PutSettingResponse
impl TryFrom<PutSettingResponse> for PutSettingResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: PutSettingResponse) -> Result<Self, ConversionError>
fn try_from(value: PutSettingResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PutSettingResponse
impl RefUnwindSafe for PutSettingResponse
impl Send for PutSettingResponse
impl Sync for PutSettingResponse
impl Unpin for PutSettingResponse
impl UnsafeUnpin for PutSettingResponse
impl UnwindSafe for PutSettingResponse
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