pub struct MsgraphMessagesListParams<'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 count: Option<bool>,
pub search: Option<&'a str>,
}Expand description
OData query parameters for listing messages.
Fields§
§top: Option<u32>Maximum number of messages per page ($top).
skip: Option<u32>Number of messages 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).
count: Option<bool>Whether the total count rides along the page ($count).
search: Option<&'a str>OData $search over the message collection (e.g. "subject:foo"
or a bare term); Graph wraps a bare term as a free-text search.
Trait Implementations§
Source§impl<'a> Clone for MsgraphMessagesListParams<'a>
impl<'a> Clone for MsgraphMessagesListParams<'a>
Source§fn clone(&self) -> MsgraphMessagesListParams<'a>
fn clone(&self) -> MsgraphMessagesListParams<'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 MsgraphMessagesListParams<'a>
impl<'a> Debug for MsgraphMessagesListParams<'a>
Source§impl<'a> Default for MsgraphMessagesListParams<'a>
impl<'a> Default for MsgraphMessagesListParams<'a>
Source§fn default() -> MsgraphMessagesListParams<'a>
fn default() -> MsgraphMessagesListParams<'a>
Returns the “default value” for a type. Read more
impl<'a> Eq for MsgraphMessagesListParams<'a>
Source§impl<'a> PartialEq for MsgraphMessagesListParams<'a>
impl<'a> PartialEq for MsgraphMessagesListParams<'a>
Source§impl<'a> Serialize for MsgraphMessagesListParams<'a>
impl<'a> Serialize for MsgraphMessagesListParams<'a>
impl<'a> StructuralPartialEq for MsgraphMessagesListParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for MsgraphMessagesListParams<'a>
impl<'a> RefUnwindSafe for MsgraphMessagesListParams<'a>
impl<'a> Send for MsgraphMessagesListParams<'a>
impl<'a> Sync for MsgraphMessagesListParams<'a>
impl<'a> Unpin for MsgraphMessagesListParams<'a>
impl<'a> UnsafeUnpin for MsgraphMessagesListParams<'a>
impl<'a> UnwindSafe for MsgraphMessagesListParams<'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