pub struct JiraField {
pub id: String,
pub name: String,
pub custom: bool,
pub schema_type: Option<String>,
}Expand description
A JIRA field definition.
Fields§
§id: StringField ID (e.g., “summary”, “customfield_10001”).
name: StringHuman-readable field name.
custom: boolWhether this is a custom field.
schema_type: Option<String>Schema type (e.g., “string”, “array”, “option”).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JiraField
impl RefUnwindSafe for JiraField
impl Send for JiraField
impl Sync for JiraField
impl Unpin for JiraField
impl UnsafeUnpin for JiraField
impl UnwindSafe for JiraField
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