pub struct UpdateApiCacheResponse {
pub api_cache: Option<ApiCache>,
}
Expand description
Represents the output of a UpdateApiCache
operation.
Fields§
§api_cache: Option<ApiCache>
The ApiCache
object.
Trait Implementations§
Source§impl Clone for UpdateApiCacheResponse
impl Clone for UpdateApiCacheResponse
Source§fn clone(&self) -> UpdateApiCacheResponse
fn clone(&self) -> UpdateApiCacheResponse
Returns a copy 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 Debug for UpdateApiCacheResponse
impl Debug for UpdateApiCacheResponse
Source§impl Default for UpdateApiCacheResponse
impl Default for UpdateApiCacheResponse
Source§fn default() -> UpdateApiCacheResponse
fn default() -> UpdateApiCacheResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateApiCacheResponse
impl<'de> Deserialize<'de> for UpdateApiCacheResponse
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 UpdateApiCacheResponse
impl PartialEq for UpdateApiCacheResponse
impl StructuralPartialEq for UpdateApiCacheResponse
Auto Trait Implementations§
impl Freeze for UpdateApiCacheResponse
impl RefUnwindSafe for UpdateApiCacheResponse
impl Send for UpdateApiCacheResponse
impl Sync for UpdateApiCacheResponse
impl Unpin for UpdateApiCacheResponse
impl UnwindSafe for UpdateApiCacheResponse
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