pub struct JiraCustomField {
pub id: String,
pub name: String,
pub value: Value,
}Expand description
A JIRA custom field value keyed by both its stable ID and human name.
Fields§
§id: StringField ID (e.g., “customfield_19300”). Stable across renames.
name: StringHuman-readable field name (e.g., “Acceptance Criteria”). Falls back
to id when the API did not return expand=names.
value: ValueRaw field value as returned by the API (ADF JSON, option object, scalar, etc.).
Trait Implementations§
Source§impl Clone for JiraCustomField
impl Clone for JiraCustomField
Source§fn clone(&self) -> JiraCustomField
fn clone(&self) -> JiraCustomField
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 JiraCustomField
impl Debug for JiraCustomField
Auto Trait Implementations§
impl Freeze for JiraCustomField
impl RefUnwindSafe for JiraCustomField
impl Send for JiraCustomField
impl Sync for JiraCustomField
impl Unpin for JiraCustomField
impl UnsafeUnpin for JiraCustomField
impl UnwindSafe for JiraCustomField
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