pub struct AttachmentMeta {
pub guid: Option<String>,
pub transcription: Option<String>,
pub height: Option<f64>,
pub width: Option<f64>,
pub name: Option<String>,
}Expand description
Attachment metadata attached to a body range.
Fields§
§guid: Option<String>GUID of the attachment row.
transcription: Option<String>Audio transcription stored on the attributed range.
height: Option<f64>Inline media height in points.
width: Option<f64>Inline media width in points.
name: Option<String>Original attachment filename.
Trait Implementations§
Source§impl Clone for AttachmentMeta
impl Clone for AttachmentMeta
Source§fn clone(&self) -> AttachmentMeta
fn clone(&self) -> AttachmentMeta
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 Debug for AttachmentMeta
impl Debug for AttachmentMeta
Source§impl Default for AttachmentMeta
impl Default for AttachmentMeta
Source§fn default() -> AttachmentMeta
fn default() -> AttachmentMeta
Returns the “default value” for a type. Read more
Source§impl PartialEq for AttachmentMeta
impl PartialEq for AttachmentMeta
Source§fn eq(&self, other: &AttachmentMeta) -> bool
fn eq(&self, other: &AttachmentMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttachmentMeta
Auto Trait Implementations§
impl Freeze for AttachmentMeta
impl RefUnwindSafe for AttachmentMeta
impl Send for AttachmentMeta
impl Sync for AttachmentMeta
impl Unpin for AttachmentMeta
impl UnsafeUnpin for AttachmentMeta
impl UnwindSafe for AttachmentMeta
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