pub struct AttachmentCreateInput {
pub id: Option<String>,
pub title: Option<String>,
pub subtitle: Option<String>,
pub url: Option<String>,
pub issue_id: Option<String>,
pub icon_url: Option<String>,
pub metadata: Option<Value>,
pub group_by_source: Option<bool>,
pub comment_body: Option<String>,
pub comment_body_data: Option<Value>,
pub create_as_user: Option<String>,
}Fields§
§id: Option<String>§title: Option<String>§subtitle: Option<String>§url: Option<String>§issue_id: Option<String>§icon_url: Option<String>§metadata: Option<Value>§group_by_source: Option<bool>§comment_body: Option<String>§comment_body_data: Option<Value>§create_as_user: Option<String>Trait Implementations§
Source§impl Clone for AttachmentCreateInput
impl Clone for AttachmentCreateInput
Source§fn clone(&self) -> AttachmentCreateInput
fn clone(&self) -> AttachmentCreateInput
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 AttachmentCreateInput
impl Debug for AttachmentCreateInput
Source§impl Default for AttachmentCreateInput
impl Default for AttachmentCreateInput
Source§fn default() -> AttachmentCreateInput
fn default() -> AttachmentCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AttachmentCreateInput
impl<'de> Deserialize<'de> for AttachmentCreateInput
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 AttachmentCreateInput
impl RefUnwindSafe for AttachmentCreateInput
impl Send for AttachmentCreateInput
impl Sync for AttachmentCreateInput
impl Unpin for AttachmentCreateInput
impl UnwindSafe for AttachmentCreateInput
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