pub struct Database {Show 17 fields
pub object: String,
pub status: u32,
pub code: String,
pub message: String,
pub request_id: String,
pub id: String,
pub created_time: String,
pub last_edited_time: String,
pub created_by: User,
pub last_edited_by: User,
pub url: String,
pub archived: bool,
pub is_inline: bool,
pub public_url: Option<String>,
pub title: Vec<RichText>,
pub description: Vec<RichText>,
pub properties: FxHashMap<String, DatabaseProperty>,
}
Fields§
§object: String
§status: u32
§code: String
§message: String
§request_id: String
§id: String
§created_time: String
§last_edited_time: String
§created_by: User
§last_edited_by: User
§url: String
§archived: bool
§is_inline: bool
§public_url: Option<String>
§title: Vec<RichText>
§description: Vec<RichText>
§properties: FxHashMap<String, DatabaseProperty>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Database
impl<'de> Deserialize<'de> for Database
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 Database
impl RefUnwindSafe for Database
impl Send for Database
impl Sync for Database
impl Unpin for Database
impl UnwindSafe for Database
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