pub struct HistoryResourcePagingResource {
pub page: Option<i32>,
pub page_size: Option<i32>,
pub sort_key: Option<Option<String>>,
pub sort_direction: Option<SortDirection>,
pub total_records: Option<i32>,
pub records: Option<Option<Vec<HistoryResource>>>,
}
Fields§
§page: Option<i32>
§page_size: Option<i32>
§sort_key: Option<Option<String>>
§sort_direction: Option<SortDirection>
§total_records: Option<i32>
§records: Option<Option<Vec<HistoryResource>>>
Implementations§
Trait Implementations§
Source§impl Clone for HistoryResourcePagingResource
impl Clone for HistoryResourcePagingResource
Source§fn clone(&self) -> HistoryResourcePagingResource
fn clone(&self) -> HistoryResourcePagingResource
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 HistoryResourcePagingResource
impl<'de> Deserialize<'de> for HistoryResourcePagingResource
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 HistoryResourcePagingResource
impl PartialEq for HistoryResourcePagingResource
Source§fn eq(&self, other: &HistoryResourcePagingResource) -> bool
fn eq(&self, other: &HistoryResourcePagingResource) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for HistoryResourcePagingResource
Auto Trait Implementations§
impl Freeze for HistoryResourcePagingResource
impl RefUnwindSafe for HistoryResourcePagingResource
impl Send for HistoryResourcePagingResource
impl Sync for HistoryResourcePagingResource
impl Unpin for HistoryResourcePagingResource
impl UnwindSafe for HistoryResourcePagingResource
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