pub struct DeltaApplication {
pub profile: AgentProfile,
pub warnings: Vec<String>,
pub pending_proposals: Vec<Document>,
}Expand description
Successful result of applying an agent state delta.
Fields§
§profile: AgentProfileNew profile value; the input profile is never mutated.
warnings: Vec<String>Retention and application warnings.
pending_proposals: Vec<Document>Capability-widening proposals left for human review.
Trait Implementations§
Source§impl Clone for DeltaApplication
impl Clone for DeltaApplication
Source§fn clone(&self) -> DeltaApplication
fn clone(&self) -> DeltaApplication
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 DeltaApplication
impl Debug for DeltaApplication
Source§impl<'de> Deserialize<'de> for DeltaApplication
impl<'de> Deserialize<'de> for DeltaApplication
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 DeltaApplication
impl RefUnwindSafe for DeltaApplication
impl Send for DeltaApplication
impl Sync for DeltaApplication
impl Unpin for DeltaApplication
impl UnsafeUnpin for DeltaApplication
impl UnwindSafe for DeltaApplication
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