pub struct JiraAttachment {
pub id: String,
pub filename: String,
pub mime_type: String,
pub size: u64,
pub content_url: String,
}Expand description
A JIRA issue attachment.
Fields§
§id: StringAttachment ID.
filename: StringFile name.
mime_type: StringMIME type (e.g., “image/png”, “application/pdf”).
size: u64File size in bytes.
content_url: StringDownload URL.
Trait Implementations§
Source§impl Clone for JiraAttachment
impl Clone for JiraAttachment
Source§fn clone(&self) -> JiraAttachment
fn clone(&self) -> JiraAttachment
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 JiraAttachment
impl Debug for JiraAttachment
Auto Trait Implementations§
impl Freeze for JiraAttachment
impl RefUnwindSafe for JiraAttachment
impl Send for JiraAttachment
impl Sync for JiraAttachment
impl Unpin for JiraAttachment
impl UnsafeUnpin for JiraAttachment
impl UnwindSafe for JiraAttachment
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