pub struct AgentStateDelta {
pub created_goal_ids: Vec<GoalId>,
pub updated_task_ids: Vec<TaskId>,
pub observation_ids: Vec<ObservationId>,
pub artifact_ids: Vec<ArtifactId>,
pub delegation_correlation_ids: Vec<CorrelationId>,
}Fields§
§created_goal_ids: Vec<GoalId>§updated_task_ids: Vec<TaskId>§observation_ids: Vec<ObservationId>§artifact_ids: Vec<ArtifactId>§delegation_correlation_ids: Vec<CorrelationId>Trait Implementations§
Source§impl Clone for AgentStateDelta
impl Clone for AgentStateDelta
Source§fn clone(&self) -> AgentStateDelta
fn clone(&self) -> AgentStateDelta
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 AgentStateDelta
impl Debug for AgentStateDelta
Source§impl Default for AgentStateDelta
impl Default for AgentStateDelta
Source§fn default() -> AgentStateDelta
fn default() -> AgentStateDelta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentStateDelta
impl<'de> Deserialize<'de> for AgentStateDelta
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentStateDelta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentStateDelta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AgentStateDelta
impl PartialEq for AgentStateDelta
Source§fn eq(&self, other: &AgentStateDelta) -> bool
fn eq(&self, other: &AgentStateDelta) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AgentStateDelta
impl Serialize for AgentStateDelta
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AgentStateDelta
Auto Trait Implementations§
impl Freeze for AgentStateDelta
impl RefUnwindSafe for AgentStateDelta
impl Send for AgentStateDelta
impl Sync for AgentStateDelta
impl Unpin for AgentStateDelta
impl UnsafeUnpin for AgentStateDelta
impl UnwindSafe for AgentStateDelta
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