pub struct Record {
pub fields: HashMap<String, Value>,
pub record_id: Option<String>,
pub created_by: Option<Person>,
pub created_time: Option<u128>,
pub last_modified_by: Option<Person>,
pub last_modified_time: Option<u128>,
}Fields§
§fields: HashMap<String, Value>§record_id: Option<String>记录Id
created_by: Option<Person>创建人
created_time: Option<u128>创建时间
last_modified_by: Option<Person>修改人
last_modified_time: Option<u128>最近更新时间
Implementations§
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