pub struct CreatorFieldProperty {
pub code: String,
pub label: String,
pub no_label: bool,
}Expand description
Properties for record creator fields.
Creator fields automatically store information about who created each record.
Fields§
§code: StringField code (unique identifier)
label: StringDisplay label
no_label: boolWhether to hide the field label
Trait Implementations§
Source§impl Clone for CreatorFieldProperty
impl Clone for CreatorFieldProperty
Source§fn clone(&self) -> CreatorFieldProperty
fn clone(&self) -> CreatorFieldProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreatorFieldProperty
impl Debug for CreatorFieldProperty
Source§impl Default for CreatorFieldProperty
impl Default for CreatorFieldProperty
Source§fn default() -> CreatorFieldProperty
fn default() -> CreatorFieldProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreatorFieldProperty
impl<'de> Deserialize<'de> for CreatorFieldProperty
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CreatorFieldProperty
Source§impl From<CreatorFieldProperty> for FieldProperty
impl From<CreatorFieldProperty> for FieldProperty
Source§fn from(property: CreatorFieldProperty) -> Self
fn from(property: CreatorFieldProperty) -> Self
Converts to this type from the input type.
Source§impl From<CreatorFieldPropertyBuilder> for CreatorFieldProperty
impl From<CreatorFieldPropertyBuilder> for CreatorFieldProperty
Source§fn from(builder: CreatorFieldPropertyBuilder) -> Self
fn from(builder: CreatorFieldPropertyBuilder) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CreatorFieldProperty
impl PartialEq for CreatorFieldProperty
Source§impl Serialize for CreatorFieldProperty
impl Serialize for CreatorFieldProperty
impl StructuralPartialEq for CreatorFieldProperty
Auto Trait Implementations§
impl Freeze for CreatorFieldProperty
impl RefUnwindSafe for CreatorFieldProperty
impl Send for CreatorFieldProperty
impl Sync for CreatorFieldProperty
impl Unpin for CreatorFieldProperty
impl UnsafeUnpin for CreatorFieldProperty
impl UnwindSafe for CreatorFieldProperty
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