pub struct Record {
pub record_id: String,
pub fields: HashMap<String, Value>,
pub created_by: Option<UserId>,
pub created_time: Option<i64>,
pub last_modified_by: Option<UserId>,
pub last_modified_time: Option<i64>,
}
Fields§
§record_id: String
§fields: HashMap<String, Value>
§created_by: Option<UserId>
§created_time: Option<i64>
§last_modified_by: Option<UserId>
§last_modified_time: Option<i64>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Record
impl<'de> Deserialize<'de> for Record
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 Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
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