pub struct LinkIssueRequestJsonBean {
pub _type: IssueLinkType,
pub inward_issue: LinkedIssue,
pub outward_issue: LinkedIssue,
pub comment: Option<Comment>,
}
Fields§
§_type: IssueLinkType
§inward_issue: LinkedIssue
§outward_issue: LinkedIssue
§comment: Option<Comment>
Implementations§
Source§impl LinkIssueRequestJsonBean
impl LinkIssueRequestJsonBean
pub fn new( _type: IssueLinkType, inward_issue: LinkedIssue, outward_issue: LinkedIssue, ) -> LinkIssueRequestJsonBean
Trait Implementations§
Source§impl Clone for LinkIssueRequestJsonBean
impl Clone for LinkIssueRequestJsonBean
Source§fn clone(&self) -> LinkIssueRequestJsonBean
fn clone(&self) -> LinkIssueRequestJsonBean
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 LinkIssueRequestJsonBean
impl Debug for LinkIssueRequestJsonBean
Source§impl<'de> Deserialize<'de> for LinkIssueRequestJsonBean
impl<'de> Deserialize<'de> for LinkIssueRequestJsonBean
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
Source§impl PartialEq for LinkIssueRequestJsonBean
impl PartialEq for LinkIssueRequestJsonBean
Source§impl Serialize for LinkIssueRequestJsonBean
impl Serialize for LinkIssueRequestJsonBean
impl StructuralPartialEq for LinkIssueRequestJsonBean
Auto Trait Implementations§
impl Freeze for LinkIssueRequestJsonBean
impl RefUnwindSafe for LinkIssueRequestJsonBean
impl Send for LinkIssueRequestJsonBean
impl Sync for LinkIssueRequestJsonBean
impl Unpin for LinkIssueRequestJsonBean
impl UnwindSafe for LinkIssueRequestJsonBean
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