pub struct JiraIssueLinkType {
pub name: String,
pub inward: Option<String>,
pub outward: Option<String>,
}Fields§
§name: StringLink type name (e.g., “Blocks”, “Relates”)
inward: Option<String>Inward description (e.g., “is blocked by”)
outward: Option<String>Outward description (e.g., “blocks”)
Trait Implementations§
Source§impl Clone for JiraIssueLinkType
impl Clone for JiraIssueLinkType
Source§fn clone(&self) -> JiraIssueLinkType
fn clone(&self) -> JiraIssueLinkType
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 JiraIssueLinkType
impl Debug for JiraIssueLinkType
Source§impl<'de> Deserialize<'de> for JiraIssueLinkType
impl<'de> Deserialize<'de> for JiraIssueLinkType
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 JiraIssueLinkType
impl RefUnwindSafe for JiraIssueLinkType
impl Send for JiraIssueLinkType
impl Sync for JiraIssueLinkType
impl Unpin for JiraIssueLinkType
impl UnsafeUnpin for JiraIssueLinkType
impl UnwindSafe for JiraIssueLinkType
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