pub struct PageBeanGroupDetails {
pub param_self: Option<String>,
pub next_page: Option<String>,
pub max_results: Option<i32>,
pub start_at: Option<i64>,
pub total: Option<i64>,
pub is_last: Option<bool>,
pub values: Option<Vec<GroupDetails>>,
}
Expand description
PageBeanGroupDetails : A page of items.
Fields§
§param_self: Option<String>
The URL of the page.
next_page: Option<String>
If there is another page of results, the URL of the next page.
max_results: Option<i32>
The maximum number of items that could be returned.
start_at: Option<i64>
The index of the first item returned.
total: Option<i64>
The number of items returned.
is_last: Option<bool>
Whether this is the last page.
values: Option<Vec<GroupDetails>>
The list of items.
Implementations§
Source§impl PageBeanGroupDetails
impl PageBeanGroupDetails
Sourcepub fn new() -> PageBeanGroupDetails
pub fn new() -> PageBeanGroupDetails
A page of items.
Trait Implementations§
Source§impl Clone for PageBeanGroupDetails
impl Clone for PageBeanGroupDetails
Source§fn clone(&self) -> PageBeanGroupDetails
fn clone(&self) -> PageBeanGroupDetails
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 PageBeanGroupDetails
impl Debug for PageBeanGroupDetails
Source§impl Default for PageBeanGroupDetails
impl Default for PageBeanGroupDetails
Source§fn default() -> PageBeanGroupDetails
fn default() -> PageBeanGroupDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageBeanGroupDetails
impl<'de> Deserialize<'de> for PageBeanGroupDetails
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 PageBeanGroupDetails
impl PartialEq for PageBeanGroupDetails
Source§impl Serialize for PageBeanGroupDetails
impl Serialize for PageBeanGroupDetails
impl StructuralPartialEq for PageBeanGroupDetails
Auto Trait Implementations§
impl Freeze for PageBeanGroupDetails
impl RefUnwindSafe for PageBeanGroupDetails
impl Send for PageBeanGroupDetails
impl Sync for PageBeanGroupDetails
impl Unpin for PageBeanGroupDetails
impl UnwindSafe for PageBeanGroupDetails
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