pub struct PageBeanField {
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<Field>>,
}
Expand description
PageBeanField : 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<Field>>
The list of items.
Implementations§
Source§impl PageBeanField
impl PageBeanField
Sourcepub fn new() -> PageBeanField
pub fn new() -> PageBeanField
A page of items.
Trait Implementations§
Source§impl Clone for PageBeanField
impl Clone for PageBeanField
Source§fn clone(&self) -> PageBeanField
fn clone(&self) -> PageBeanField
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 PageBeanField
impl Debug for PageBeanField
Source§impl Default for PageBeanField
impl Default for PageBeanField
Source§fn default() -> PageBeanField
fn default() -> PageBeanField
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageBeanField
impl<'de> Deserialize<'de> for PageBeanField
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 PageBeanField
impl PartialEq for PageBeanField
Source§impl Serialize for PageBeanField
impl Serialize for PageBeanField
impl StructuralPartialEq for PageBeanField
Auto Trait Implementations§
impl Freeze for PageBeanField
impl RefUnwindSafe for PageBeanField
impl Send for PageBeanField
impl Sync for PageBeanField
impl Unpin for PageBeanField
impl UnwindSafe for PageBeanField
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