pub struct GetFieldConfigurationItemsParams {
pub id: i64,
pub start_at: Option<i64>,
pub max_results: Option<i32>,
}
Expand description
struct for passing parameters to the method get_field_configuration_items
Fields§
§id: i64
The ID of the field configuration.
start_at: Option<i64>
The index of the first item to return in a page of results (page offset).
max_results: Option<i32>
The maximum number of items to return per page.
Trait Implementations§
Source§impl Clone for GetFieldConfigurationItemsParams
impl Clone for GetFieldConfigurationItemsParams
Source§fn clone(&self) -> GetFieldConfigurationItemsParams
fn clone(&self) -> GetFieldConfigurationItemsParams
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 moreAuto Trait Implementations§
impl Freeze for GetFieldConfigurationItemsParams
impl RefUnwindSafe for GetFieldConfigurationItemsParams
impl Send for GetFieldConfigurationItemsParams
impl Sync for GetFieldConfigurationItemsParams
impl Unpin for GetFieldConfigurationItemsParams
impl UnwindSafe for GetFieldConfigurationItemsParams
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