pub struct EditMetaField {
pub name: String,
pub schema: EditMetaSchema,
}Expand description
A single field descriptor from the editmeta response.
Fields§
§name: StringHuman-readable field name.
schema: EditMetaSchemaSchema describing the field’s wire type.
Implementations§
Source§impl EditMetaField
impl EditMetaField
Sourcepub fn is_adf_rich_text(&self) -> bool
pub fn is_adf_rich_text(&self) -> bool
Returns true when the field is a rich-text (ADF) custom field.
Trait Implementations§
Source§impl Clone for EditMetaField
impl Clone for EditMetaField
Source§fn clone(&self) -> EditMetaField
fn clone(&self) -> EditMetaField
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 EditMetaField
impl RefUnwindSafe for EditMetaField
impl Send for EditMetaField
impl Sync for EditMetaField
impl Unpin for EditMetaField
impl UnsafeUnpin for EditMetaField
impl UnwindSafe for EditMetaField
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