pub struct FileAttachment {
pub odata_type: String,
pub name: String,
pub content_type: String,
pub content_bytes: String,
}Expand description
File attachment (Graph fileAttachment; content as base64).
Fields§
§odata_type: StringOData type; use #microsoft.graph.fileAttachment.
name: StringFile name (e.g. document.pdf).
content_type: StringMIME type (e.g. application/pdf).
content_bytes: StringFile contents, base64-encoded.
Implementations§
Trait Implementations§
Source§impl Clone for FileAttachment
impl Clone for FileAttachment
Source§fn clone(&self) -> FileAttachment
fn clone(&self) -> FileAttachment
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 FileAttachment
impl Debug for FileAttachment
Source§impl<'de> Deserialize<'de> for FileAttachment
impl<'de> Deserialize<'de> for FileAttachment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FileAttachment
impl RefUnwindSafe for FileAttachment
impl Send for FileAttachment
impl Sync for FileAttachment
impl Unpin for FileAttachment
impl UnsafeUnpin for FileAttachment
impl UnwindSafe for FileAttachment
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