pub struct OperationalContextDelta {
pub generation: ContextGeneration,
pub user_scope: Option<String>,
pub identity: Option<String>,
pub memory: Option<String>,
pub integration_guide: Option<String>,
pub installed_integrations: Option<String>,
pub scope_integrations: Option<String>,
}Expand description
Delta returned for sections whose generation differs from the caller’s cached vector.
Fields§
§generation: ContextGeneration§user_scope: Option<String>§identity: Option<String>§memory: Option<String>§integration_guide: Option<String>§installed_integrations: Option<String>§scope_integrations: Option<String>Trait Implementations§
Source§impl Clone for OperationalContextDelta
impl Clone for OperationalContextDelta
Source§fn clone(&self) -> OperationalContextDelta
fn clone(&self) -> OperationalContextDelta
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 OperationalContextDelta
impl Debug for OperationalContextDelta
Source§impl Default for OperationalContextDelta
impl Default for OperationalContextDelta
Source§fn default() -> OperationalContextDelta
fn default() -> OperationalContextDelta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationalContextDelta
impl<'de> Deserialize<'de> for OperationalContextDelta
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 Eq for OperationalContextDelta
Source§impl PartialEq for OperationalContextDelta
impl PartialEq for OperationalContextDelta
Source§impl Serialize for OperationalContextDelta
impl Serialize for OperationalContextDelta
impl StructuralPartialEq for OperationalContextDelta
Auto Trait Implementations§
impl Freeze for OperationalContextDelta
impl RefUnwindSafe for OperationalContextDelta
impl Send for OperationalContextDelta
impl Sync for OperationalContextDelta
impl Unpin for OperationalContextDelta
impl UnsafeUnpin for OperationalContextDelta
impl UnwindSafe for OperationalContextDelta
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