pub struct JiraLinkType {
pub id: String,
pub name: String,
pub outward: Option<String>,
pub inward: Option<String>,
}Fields§
§id: String§name: String§outward: Option<String>Outward description (e.g., “blocks”).
inward: Option<String>Inward description (e.g., “is blocked by”).
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 (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 JiraLinkType
impl Debug for JiraLinkType
Source§impl<'de> Deserialize<'de> for JiraLinkType
impl<'de> Deserialize<'de> for JiraLinkType
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 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