pub struct AuthorizedFilter {
pub fields: Option<String>,
pub exclude_fields: Option<String>,
pub count: Option<u64>,
pub offset: Option<u64>,
}
Expand description
Authorized Request Filter
Fields§
§fields: Option<String>
A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
exclude_fields: Option<String>
A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation.
count: Option<u64>
The number of records to return. Default value is 10.
offset: Option<u64>
The number of records from a collection to skip. Iterating over large collections with this parameter can be slow. Default value is 0..
Trait Implementations§
Source§impl Clone for AuthorizedFilter
impl Clone for AuthorizedFilter
Source§fn clone(&self) -> AuthorizedFilter
fn clone(&self) -> AuthorizedFilter
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 AuthorizedFilter
impl Debug for AuthorizedFilter
Source§impl Default for AuthorizedFilter
impl Default for AuthorizedFilter
Source§impl ResourceFilter for AuthorizedFilter
impl ResourceFilter for AuthorizedFilter
Auto Trait Implementations§
impl Freeze for AuthorizedFilter
impl RefUnwindSafe for AuthorizedFilter
impl Send for AuthorizedFilter
impl Sync for AuthorizedFilter
impl Unpin for AuthorizedFilter
impl UnwindSafe for AuthorizedFilter
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