pub struct AttachmentMetadata {
pub id: u64,
pub filename: String,
pub description: Option<String>,
}Expand description
Attachment metadata entry for the attachments field of MessageCreatePayload.
id must match the index used in the corresponding files[N] multipart part.
Fields§
§id: u64§filename: String§description: Option<String>Trait Implementations§
Source§impl Clone for AttachmentMetadata
impl Clone for AttachmentMetadata
Source§fn clone(&self) -> AttachmentMetadata
fn clone(&self) -> AttachmentMetadata
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 AttachmentMetadata
impl Debug for AttachmentMetadata
Auto Trait Implementations§
impl Freeze for AttachmentMetadata
impl RefUnwindSafe for AttachmentMetadata
impl Send for AttachmentMetadata
impl Sync for AttachmentMetadata
impl Unpin for AttachmentMetadata
impl UnsafeUnpin for AttachmentMetadata
impl UnwindSafe for AttachmentMetadata
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