#[non_exhaustive]pub struct ListCasesResponse {
pub cases: Vec<Case>,
pub next_page_token: String,
/* private fields */
}Expand description
The response message for the ListCases endpoint.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.cases: Vec<Case>The list of cases associated with the parent after any filters have been applied.
next_page_token: StringA token to retrieve the next page of results. Set this in the page_token
field of subsequent cases.list requests. If unspecified, there are no
more results to retrieve.
Implementations§
Source§impl ListCasesResponse
impl ListCasesResponse
Trait Implementations§
Source§impl Clone for ListCasesResponse
impl Clone for ListCasesResponse
Source§fn clone(&self) -> ListCasesResponse
fn clone(&self) -> ListCasesResponse
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 ListCasesResponse
impl Debug for ListCasesResponse
Source§impl Default for ListCasesResponse
impl Default for ListCasesResponse
Source§fn default() -> ListCasesResponse
fn default() -> ListCasesResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListCasesResponse
impl Message for ListCasesResponse
Source§impl PartialEq for ListCasesResponse
impl PartialEq for ListCasesResponse
impl StructuralPartialEq for ListCasesResponse
Auto Trait Implementations§
impl Freeze for ListCasesResponse
impl RefUnwindSafe for ListCasesResponse
impl Send for ListCasesResponse
impl Sync for ListCasesResponse
impl Unpin for ListCasesResponse
impl UnwindSafe for ListCasesResponse
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