pub struct DatabaseProperty {Show 23 fields
pub id: String,
pub name: String,
pub type_name: String,
pub checkbox: FxHashMap<String, String>,
pub created_by: FxHashMap<String, String>,
pub created_time: FxHashMap<String, String>,
pub date: FxHashMap<String, String>,
pub email: FxHashMap<String, String>,
pub files: FxHashMap<String, String>,
pub formula: FormulaExpression,
pub last_edited_by: FxHashMap<String, String>,
pub last_edited_time: FxHashMap<String, String>,
pub multi_select: MultiSelectObject,
pub number: NumberFormat,
pub people: FxHashMap<String, String>,
pub phone_number: FxHashMap<String, String>,
pub relation: RelationObject,
pub rich_text: FxHashMap<String, String>,
pub rollup: RollupObject,
pub select: SelectObject,
pub status: StatusObject,
pub title: FxHashMap<String, String>,
pub url: FxHashMap<String, String>,
}
Fields§
§id: String
§name: String
§type_name: String
§checkbox: FxHashMap<String, String>
§created_by: FxHashMap<String, String>
§created_time: FxHashMap<String, String>
§date: FxHashMap<String, String>
§email: FxHashMap<String, String>
§files: FxHashMap<String, String>
§formula: FormulaExpression
§last_edited_by: FxHashMap<String, String>
§last_edited_time: FxHashMap<String, String>
§multi_select: MultiSelectObject
§number: NumberFormat
§people: FxHashMap<String, String>
§phone_number: FxHashMap<String, String>
§relation: RelationObject
§rich_text: FxHashMap<String, String>
§rollup: RollupObject
§select: SelectObject
§status: StatusObject
§title: FxHashMap<String, String>
§url: FxHashMap<String, String>
Trait Implementations§
Source§impl Clone for DatabaseProperty
impl Clone for DatabaseProperty
Source§fn clone(&self) -> DatabaseProperty
fn clone(&self) -> DatabaseProperty
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DatabaseProperty
impl Debug for DatabaseProperty
Source§impl Default for DatabaseProperty
impl Default for DatabaseProperty
Source§fn default() -> DatabaseProperty
fn default() -> DatabaseProperty
Returns the “default value” for a type. Read more
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