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