pub struct PageBeanCustomFieldContextOption {
pub _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<CustomFieldContextOption>>,
}
Expand description
PageBeanCustomFieldContextOption : A page of items.
Fields§
§_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<CustomFieldContextOption>>
The list of items.
Implementations§
Source§impl PageBeanCustomFieldContextOption
impl PageBeanCustomFieldContextOption
Sourcepub fn new() -> PageBeanCustomFieldContextOption
pub fn new() -> PageBeanCustomFieldContextOption
A page of items.
Trait Implementations§
Source§impl Clone for PageBeanCustomFieldContextOption
impl Clone for PageBeanCustomFieldContextOption
Source§fn clone(&self) -> PageBeanCustomFieldContextOption
fn clone(&self) -> PageBeanCustomFieldContextOption
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<'de> Deserialize<'de> for PageBeanCustomFieldContextOption
impl<'de> Deserialize<'de> for PageBeanCustomFieldContextOption
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 PageBeanCustomFieldContextOption
impl PartialEq for PageBeanCustomFieldContextOption
Source§fn eq(&self, other: &PageBeanCustomFieldContextOption) -> bool
fn eq(&self, other: &PageBeanCustomFieldContextOption) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PageBeanCustomFieldContextOption
Auto Trait Implementations§
impl Freeze for PageBeanCustomFieldContextOption
impl RefUnwindSafe for PageBeanCustomFieldContextOption
impl Send for PageBeanCustomFieldContextOption
impl Sync for PageBeanCustomFieldContextOption
impl Unpin for PageBeanCustomFieldContextOption
impl UnwindSafe for PageBeanCustomFieldContextOption
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