pub struct PaginatedClusterGroupList {
pub count: i32,
pub next: Option<Option<String>>,
pub previous: Option<Option<String>>,
pub results: Vec<ClusterGroup>,
}Fields§
§count: i32§next: Option<Option<String>>§previous: Option<Option<String>>§results: Vec<ClusterGroup>Implementations§
Source§impl PaginatedClusterGroupList
impl PaginatedClusterGroupList
pub fn new(count: i32, results: Vec<ClusterGroup>) -> PaginatedClusterGroupList
Trait Implementations§
Source§impl Clone for PaginatedClusterGroupList
impl Clone for PaginatedClusterGroupList
Source§fn clone(&self) -> PaginatedClusterGroupList
fn clone(&self) -> PaginatedClusterGroupList
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 PaginatedClusterGroupList
impl Debug for PaginatedClusterGroupList
Source§impl Default for PaginatedClusterGroupList
impl Default for PaginatedClusterGroupList
Source§fn default() -> PaginatedClusterGroupList
fn default() -> PaginatedClusterGroupList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedClusterGroupList
impl<'de> Deserialize<'de> for PaginatedClusterGroupList
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 PaginatedClusterGroupList
Auto Trait Implementations§
impl Freeze for PaginatedClusterGroupList
impl RefUnwindSafe for PaginatedClusterGroupList
impl Send for PaginatedClusterGroupList
impl Sync for PaginatedClusterGroupList
impl Unpin for PaginatedClusterGroupList
impl UnwindSafe for PaginatedClusterGroupList
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