pub struct MsgraphMessagesList { /* private fields */ }Expand description
Lists the Microsoft Graph messages of a mailbox or mail folder.
Implementations§
Source§impl MsgraphMessagesList
impl MsgraphMessagesList
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
folder: Option<&str>,
params: &MsgraphMessagesListParams<'_>,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, folder: Option<&str>, params: &MsgraphMessagesListParams<'_>, ) -> Result<Self, MsgraphSendError>
Lists messages in the whole mailbox, or in folder when given (a
folder id or a well-known name such as inbox).
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphMessagesList
impl MsgraphCoroutine for MsgraphMessagesList
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphMessagesListResponse>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphMessagesListResponse>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphMessagesList
impl RefUnwindSafe for MsgraphMessagesList
impl Send for MsgraphMessagesList
impl Sync for MsgraphMessagesList
impl Unpin for MsgraphMessagesList
impl UnsafeUnpin for MsgraphMessagesList
impl UnwindSafe for MsgraphMessagesList
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