pub struct EditMeta {
pub fields: BTreeMap<String, EditMetaField>,
}Expand description
Metadata returned by GET /rest/api/3/issue/{key}/editmeta.
Scoped to fields on the issue’s screen, so names are unambiguous for a given issue even when multiple custom fields share a display name globally.
Fields§
§fields: BTreeMap<String, EditMetaField>Field metadata keyed by field ID (e.g., customfield_19300).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EditMeta
impl RefUnwindSafe for EditMeta
impl Send for EditMeta
impl Sync for EditMeta
impl Unpin for EditMeta
impl UnsafeUnpin for EditMeta
impl UnwindSafe for EditMeta
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