pub struct ActorDonePlan {
pub session_id: String,
pub thread: String,
pub status: ActorPresenceStatus,
}Expand description
Pure plan describing the done transition for machine/human output.
Fields§
§session_id: String§thread: String§status: ActorPresenceStatusAlways ActorPresenceStatus::Complete for a successful done plan.
Trait Implementations§
Source§impl Clone for ActorDonePlan
impl Clone for ActorDonePlan
Source§fn clone(&self) -> ActorDonePlan
fn clone(&self) -> ActorDonePlan
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 ActorDonePlan
impl Debug for ActorDonePlan
impl Eq for ActorDonePlan
Source§impl PartialEq for ActorDonePlan
impl PartialEq for ActorDonePlan
impl StructuralPartialEq for ActorDonePlan
Auto Trait Implementations§
impl Freeze for ActorDonePlan
impl RefUnwindSafe for ActorDonePlan
impl Send for ActorDonePlan
impl Sync for ActorDonePlan
impl Unpin for ActorDonePlan
impl UnsafeUnpin for ActorDonePlan
impl UnwindSafe for ActorDonePlan
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