pub struct MsgraphAttachmentsList { /* private fields */ }Expand description
Lists the attachments of a Microsoft Graph message.
Implementations§
Source§impl MsgraphAttachmentsList
impl MsgraphAttachmentsList
Sourcepub fn new(
auth: &HttpAuthBearer,
user_id: &str,
message_id: &str,
) -> Result<Self, MsgraphSendError>
pub fn new( auth: &HttpAuthBearer, user_id: &str, message_id: &str, ) -> Result<Self, MsgraphSendError>
Lists the attachments of the message message_id.
Trait Implementations§
Source§impl MsgraphCoroutine for MsgraphAttachmentsList
impl MsgraphCoroutine for MsgraphAttachmentsList
Source§type Yield = MsgraphYield
type Yield = MsgraphYield
The I/O request type yielded while the coroutine progresses.
Source§type Return = Result<MsgraphSendOutput<MsgraphAttachmentsListResponse>, MsgraphSendError>
type Return = Result<MsgraphSendOutput<MsgraphAttachmentsListResponse>, MsgraphSendError>
The final value produced on completion.
Auto Trait Implementations§
impl Freeze for MsgraphAttachmentsList
impl RefUnwindSafe for MsgraphAttachmentsList
impl Send for MsgraphAttachmentsList
impl Sync for MsgraphAttachmentsList
impl Unpin for MsgraphAttachmentsList
impl UnsafeUnpin for MsgraphAttachmentsList
impl UnwindSafe for MsgraphAttachmentsList
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