pub struct MsgraphContactsListParams<'a> {
pub top: Option<u32>,
pub skip: Option<u32>,
pub select: Option<&'a str>,
pub filter: Option<&'a str>,
pub orderby: Option<&'a str>,
pub expand: Option<&'a str>,
pub count: Option<bool>,
}Expand description
OData query parameters for listing contacts.
Fields§
§top: Option<u32>Maximum number of contacts per page ($top).
skip: Option<u32>Number of contacts to skip ($skip).
select: Option<&'a str>Comma-separated properties to return ($select).
filter: Option<&'a str>OData filter expression ($filter).
orderby: Option<&'a str>Comma-separated sort properties ($orderby).
expand: Option<&'a str>Navigation clause to expand ($expand).
count: Option<bool>Whether the total count rides along the page ($count).
Trait Implementations§
Source§impl<'a> Clone for MsgraphContactsListParams<'a>
impl<'a> Clone for MsgraphContactsListParams<'a>
Source§fn clone(&self) -> MsgraphContactsListParams<'a>
fn clone(&self) -> MsgraphContactsListParams<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for MsgraphContactsListParams<'a>
impl<'a> Debug for MsgraphContactsListParams<'a>
Source§impl<'a> Default for MsgraphContactsListParams<'a>
impl<'a> Default for MsgraphContactsListParams<'a>
Source§fn default() -> MsgraphContactsListParams<'a>
fn default() -> MsgraphContactsListParams<'a>
Returns the “default value” for a type. Read more
impl<'a> Eq for MsgraphContactsListParams<'a>
Source§impl<'a> PartialEq for MsgraphContactsListParams<'a>
impl<'a> PartialEq for MsgraphContactsListParams<'a>
Source§impl<'a> Serialize for MsgraphContactsListParams<'a>
impl<'a> Serialize for MsgraphContactsListParams<'a>
impl<'a> StructuralPartialEq for MsgraphContactsListParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for MsgraphContactsListParams<'a>
impl<'a> RefUnwindSafe for MsgraphContactsListParams<'a>
impl<'a> Send for MsgraphContactsListParams<'a>
impl<'a> Sync for MsgraphContactsListParams<'a>
impl<'a> Unpin for MsgraphContactsListParams<'a>
impl<'a> UnsafeUnpin for MsgraphContactsListParams<'a>
impl<'a> UnwindSafe for MsgraphContactsListParams<'a>
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