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