pub struct JiraFieldSchema {
pub field_type: Option<String>,
pub items: Option<String>,
pub custom: Option<String>,
pub custom_id: Option<i64>,
pub system: Option<String>,
}Expand description
schema block of a JiraField entry. All fields optional —
shape varies between system and custom fields and across Jira
flavors.
Fields§
§field_type: Option<String>Top-level type, e.g. "string", "array", "any".
items: Option<String>Element type when field_type == "array".
custom: Option<String>Custom field type URI, e.g.
"com.pyxis.greenhopper.jira:gh-epic-link".
custom_id: Option<i64>Numeric custom field id (when custom == true).
system: Option<String>System field name when this is a system field.
Trait Implementations§
Source§impl Clone for JiraFieldSchema
impl Clone for JiraFieldSchema
Source§fn clone(&self) -> JiraFieldSchema
fn clone(&self) -> JiraFieldSchema
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 JiraFieldSchema
impl Debug for JiraFieldSchema
Source§impl<'de> Deserialize<'de> for JiraFieldSchema
impl<'de> Deserialize<'de> for JiraFieldSchema
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 JiraFieldSchema
impl RefUnwindSafe for JiraFieldSchema
impl Send for JiraFieldSchema
impl Sync for JiraFieldSchema
impl Unpin for JiraFieldSchema
impl UnsafeUnpin for JiraFieldSchema
impl UnwindSafe for JiraFieldSchema
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