pub struct JiraLinkType {
pub id: String,
pub name: String,
pub inward: String,
pub outward: String,
}Expand description
A JIRA issue link type.
Fields§
§id: StringLink type ID.
name: StringLink type name (e.g., “Blocks”, “Clones”).
inward: StringInward description (e.g., “is blocked by”).
outward: StringOutward description (e.g., “blocks”).
Trait Implementations§
Source§impl Clone for JiraLinkType
impl Clone for JiraLinkType
Source§fn clone(&self) -> JiraLinkType
fn clone(&self) -> JiraLinkType
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 JiraLinkType
impl Debug for JiraLinkType
Auto Trait Implementations§
impl Freeze for JiraLinkType
impl RefUnwindSafe for JiraLinkType
impl Send for JiraLinkType
impl Sync for JiraLinkType
impl Unpin for JiraLinkType
impl UnsafeUnpin for JiraLinkType
impl UnwindSafe for JiraLinkType
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