pub struct ObjectContexts {
pub custom: Option<HashMap<String, ObjectCustomContextPayload>>,
}Expand description
User-defined or system-defined object contexts. Each object context is a key-payload pair, where the key provides the identification and the payload holds the associated value and additional metadata.
This type is not used in any activity, and only used as part of another schema.
Fields§
§custom: Option<HashMap<String, ObjectCustomContextPayload>>User-defined object contexts.
Trait Implementations§
Source§impl Clone for ObjectContexts
impl Clone for ObjectContexts
Source§fn clone(&self) -> ObjectContexts
fn clone(&self) -> ObjectContexts
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 ObjectContexts
impl Debug for ObjectContexts
Source§impl Default for ObjectContexts
impl Default for ObjectContexts
Source§fn default() -> ObjectContexts
fn default() -> ObjectContexts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ObjectContexts
impl<'de> Deserialize<'de> for ObjectContexts
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
Source§impl Serialize for ObjectContexts
impl Serialize for ObjectContexts
impl NestedType for ObjectContexts
impl Part for ObjectContexts
Auto Trait Implementations§
impl Freeze for ObjectContexts
impl RefUnwindSafe for ObjectContexts
impl Send for ObjectContexts
impl Sync for ObjectContexts
impl Unpin for ObjectContexts
impl UnwindSafe for ObjectContexts
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