pub enum NotionPropertyValue {
Text(String),
Number(f64),
Json(Value),
Boolean(bool),
}
Variants§
Trait Implementations§
Source§impl Debug for NotionPropertyValue
impl Debug for NotionPropertyValue
Source§impl PartialEq for NotionPropertyValue
impl PartialEq for NotionPropertyValue
Source§impl ToSql for NotionPropertyValue
impl ToSql for NotionPropertyValue
Source§fn to_sql(&self) -> Result<ToSqlOutput<'_>>
fn to_sql(&self) -> Result<ToSqlOutput<'_>>
Converts Rust value to SQLite value
impl StructuralPartialEq for NotionPropertyValue
Auto Trait Implementations§
impl Freeze for NotionPropertyValue
impl RefUnwindSafe for NotionPropertyValue
impl Send for NotionPropertyValue
impl Sync for NotionPropertyValue
impl Unpin for NotionPropertyValue
impl UnwindSafe for NotionPropertyValue
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