pub enum DatabaseProperty {
Show 23 variants
Button(DatabaseButtonProperty),
Checkbox(DatabaseCheckboxProperty),
CreatedBy(DatabaseCreatedByProperty),
CreatedTime(DatabaseCreatedTimeProperty),
Date(DatabaseDateProperty),
Email(DatabaseEmailProperty),
Files(DatabaseFilesProperty),
Formula(DatabaseFormulaProperty),
LastEditedBy(DatabaseLastEditedByProperty),
LastEditedTime(DatabaseLastEditedTimeProperty),
MultiSelect(DatabaseMultiSelectProperty),
Number(DatabaseNumberProperty),
People(DatabasePeopleProperty),
PhoneNumber(DatabasePhoneNumberProperty),
Relation(DatabaseRelationProperty),
RichText(DatabaseRichTextProperty),
Rollup(DatabaseRollupProperty),
Select(DatabaseSelectProperty),
Status(DatabaseStatusProperty),
Title(DatabaseTitleProperty),
UniqueId(DatabaseUniqueIdProperty),
Url(DatabaseUrlProperty),
Verification(DatabaseVerificationProperty),
}
Variants§
Button(DatabaseButtonProperty)
Checkbox(DatabaseCheckboxProperty)
CreatedBy(DatabaseCreatedByProperty)
CreatedTime(DatabaseCreatedTimeProperty)
Date(DatabaseDateProperty)
Email(DatabaseEmailProperty)
Files(DatabaseFilesProperty)
Formula(DatabaseFormulaProperty)
LastEditedBy(DatabaseLastEditedByProperty)
LastEditedTime(DatabaseLastEditedTimeProperty)
MultiSelect(DatabaseMultiSelectProperty)
Number(DatabaseNumberProperty)
People(DatabasePeopleProperty)
PhoneNumber(DatabasePhoneNumberProperty)
Relation(DatabaseRelationProperty)
RichText(DatabaseRichTextProperty)
Rollup(DatabaseRollupProperty)
Select(DatabaseSelectProperty)
Status(DatabaseStatusProperty)
Title(DatabaseTitleProperty)
UniqueId(DatabaseUniqueIdProperty)
Url(DatabaseUrlProperty)
Verification(DatabaseVerificationProperty)
Trait Implementations§
Source§impl Clone for DatabaseProperty
impl Clone for DatabaseProperty
Source§fn clone(&self) -> DatabaseProperty
fn clone(&self) -> DatabaseProperty
Returns a copy 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 moreSource§impl Debug for DatabaseProperty
impl Debug for DatabaseProperty
Source§impl<'de> Deserialize<'de> for DatabaseProperty
impl<'de> Deserialize<'de> for DatabaseProperty
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
Auto Trait Implementations§
impl Freeze for DatabaseProperty
impl RefUnwindSafe for DatabaseProperty
impl Send for DatabaseProperty
impl Sync for DatabaseProperty
impl Unpin for DatabaseProperty
impl UnwindSafe for DatabaseProperty
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