pub enum JiraFieldType {
Option,
Array,
Number,
Date,
DateTime,
String,
Any,
}Variants§
Option
Single select → name → { id: option_id }.
Array
Multi-select → name array → [{ id }, ...].
Number
Numeric → pass-through.
Date
Date (YYYY-MM-DD) → pass-through.
DateTime
DateTime (ISO 8601) → pass-through.
String
Free text → pass-through.
Any
Catch-all (epic link, etc.) → pass-through as string key.
Trait Implementations§
Source§impl Clone for JiraFieldType
impl Clone for JiraFieldType
Source§fn clone(&self) -> JiraFieldType
fn clone(&self) -> JiraFieldType
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 JiraFieldType
impl Debug for JiraFieldType
Source§impl<'de> Deserialize<'de> for JiraFieldType
impl<'de> Deserialize<'de> for JiraFieldType
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 JiraFieldType
impl PartialEq for JiraFieldType
Source§fn eq(&self, other: &JiraFieldType) -> bool
fn eq(&self, other: &JiraFieldType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for JiraFieldType
impl Serialize for JiraFieldType
impl StructuralPartialEq for JiraFieldType
Auto Trait Implementations§
impl Freeze for JiraFieldType
impl RefUnwindSafe for JiraFieldType
impl Send for JiraFieldType
impl Sync for JiraFieldType
impl Unpin for JiraFieldType
impl UnsafeUnpin for JiraFieldType
impl UnwindSafe for JiraFieldType
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