pub struct ListCachedContentsResponse {
pub cached_contents: Vec<CachedContentSummary>,
pub next_page_token: Option<String>,
}
Expand description
Response from listing cached contents.
Fields§
§cached_contents: Vec<CachedContentSummary>
The list of cached content summaries.
next_page_token: Option<String>
A token to retrieve the next page of results.
Trait Implementations§
Source§impl Clone for ListCachedContentsResponse
impl Clone for ListCachedContentsResponse
Source§fn clone(&self) -> ListCachedContentsResponse
fn clone(&self) -> ListCachedContentsResponse
Returns a duplicate 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 ListCachedContentsResponse
impl Debug for ListCachedContentsResponse
Source§impl<'de> Deserialize<'de> for ListCachedContentsResponse
impl<'de> Deserialize<'de> for ListCachedContentsResponse
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
impl StructuralPartialEq for ListCachedContentsResponse
Auto Trait Implementations§
impl Freeze for ListCachedContentsResponse
impl RefUnwindSafe for ListCachedContentsResponse
impl Send for ListCachedContentsResponse
impl Sync for ListCachedContentsResponse
impl Unpin for ListCachedContentsResponse
impl UnwindSafe for ListCachedContentsResponse
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