pub struct SystemData {
pub created_at: Option<String>,
pub created_by: Option<String>,
pub created_by_type: Option<String>,
pub last_modified_at: Option<String>,
pub last_modified_by: Option<String>,
pub last_modified_by_type: Option<String>,
}Expand description
System data
Fields§
§created_at: Option<String>Creation date
created_by: Option<String>Created by
created_by_type: Option<String>Created by type
last_modified_at: Option<String>Last modification date
last_modified_by: Option<String>Last modified by
last_modified_by_type: Option<String>Last modified by type
Trait Implementations§
Source§impl Clone for SystemData
impl Clone for SystemData
Source§fn clone(&self) -> SystemData
fn clone(&self) -> SystemData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SystemData
impl Debug for SystemData
Source§impl<'de> Deserialize<'de> for SystemData
impl<'de> Deserialize<'de> for SystemData
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 SystemData
impl RefUnwindSafe for SystemData
impl Send for SystemData
impl Sync for SystemData
impl Unpin for SystemData
impl UnsafeUnpin for SystemData
impl UnwindSafe for SystemData
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