pub struct ObjectCustomContextPayload {
pub create_time: Option<DateTime<Utc>>,
pub update_time: Option<DateTime<Utc>>,
pub value: Option<String>,
}Expand description
The payload of a single user-defined object context.
This type is not used in any activity, and only used as part of another schema.
Fields§
§create_time: Option<DateTime<Utc>>The time at which the object context was created in RFC 3339 format.
update_time: Option<DateTime<Utc>>The time at which the object context was last updated in RFC 3339 format.
value: Option<String>The value of the object context.
Trait Implementations§
Source§impl Clone for ObjectCustomContextPayload
impl Clone for ObjectCustomContextPayload
Source§fn clone(&self) -> ObjectCustomContextPayload
fn clone(&self) -> ObjectCustomContextPayload
Returns a duplicate of the value. Read more
1.0.0 · 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 ObjectCustomContextPayload
impl Debug for ObjectCustomContextPayload
Source§impl Default for ObjectCustomContextPayload
impl Default for ObjectCustomContextPayload
Source§fn default() -> ObjectCustomContextPayload
fn default() -> ObjectCustomContextPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ObjectCustomContextPayload
impl<'de> Deserialize<'de> for ObjectCustomContextPayload
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
impl Part for ObjectCustomContextPayload
Auto Trait Implementations§
impl Freeze for ObjectCustomContextPayload
impl RefUnwindSafe for ObjectCustomContextPayload
impl Send for ObjectCustomContextPayload
impl Sync for ObjectCustomContextPayload
impl Unpin for ObjectCustomContextPayload
impl UnwindSafe for ObjectCustomContextPayload
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