pub struct EditMetaSchema {
pub kind: String,
pub custom: Option<String>,
}Expand description
Schema type information for an editable field.
Fields§
§kind: StringBase type: string, number, option, array, user, date, etc.
custom: Option<String>For custom fields: the plugin type URI, e.g.
com.atlassian.jira.plugin.system.customfieldtypes:textarea.
Trait Implementations§
Source§impl Clone for EditMetaSchema
impl Clone for EditMetaSchema
Source§fn clone(&self) -> EditMetaSchema
fn clone(&self) -> EditMetaSchema
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 moreAuto Trait Implementations§
impl Freeze for EditMetaSchema
impl RefUnwindSafe for EditMetaSchema
impl Send for EditMetaSchema
impl Sync for EditMetaSchema
impl Unpin for EditMetaSchema
impl UnsafeUnpin for EditMetaSchema
impl UnwindSafe for EditMetaSchema
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