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