pub struct PageBeanCustomFieldContextDefaultValue {
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<CustomFieldContextDefaultValue>>,
}
Expand description
PageBeanCustomFieldContextDefaultValue : 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<CustomFieldContextDefaultValue>>
The list of items.
Implementations§
Source§impl PageBeanCustomFieldContextDefaultValue
impl PageBeanCustomFieldContextDefaultValue
Sourcepub fn new() -> PageBeanCustomFieldContextDefaultValue
pub fn new() -> PageBeanCustomFieldContextDefaultValue
A page of items.
Trait Implementations§
Source§impl Clone for PageBeanCustomFieldContextDefaultValue
impl Clone for PageBeanCustomFieldContextDefaultValue
Source§fn clone(&self) -> PageBeanCustomFieldContextDefaultValue
fn clone(&self) -> PageBeanCustomFieldContextDefaultValue
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 Default for PageBeanCustomFieldContextDefaultValue
impl Default for PageBeanCustomFieldContextDefaultValue
Source§fn default() -> PageBeanCustomFieldContextDefaultValue
fn default() -> PageBeanCustomFieldContextDefaultValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageBeanCustomFieldContextDefaultValue
impl<'de> Deserialize<'de> for PageBeanCustomFieldContextDefaultValue
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 PageBeanCustomFieldContextDefaultValue
impl PartialEq for PageBeanCustomFieldContextDefaultValue
Source§fn eq(&self, other: &PageBeanCustomFieldContextDefaultValue) -> bool
fn eq(&self, other: &PageBeanCustomFieldContextDefaultValue) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PageBeanCustomFieldContextDefaultValue
Auto Trait Implementations§
impl Freeze for PageBeanCustomFieldContextDefaultValue
impl RefUnwindSafe for PageBeanCustomFieldContextDefaultValue
impl Send for PageBeanCustomFieldContextDefaultValue
impl Sync for PageBeanCustomFieldContextDefaultValue
impl Unpin for PageBeanCustomFieldContextDefaultValue
impl UnwindSafe for PageBeanCustomFieldContextDefaultValue
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