pub struct ReasoningChange {
pub id: MessageId,
pub kind: ReasoningChangeKind,
}Expand description
Which reasoning message changed, and how.
Fields§
§id: MessageIdThe reasoning message’s id.
kind: ReasoningChangeKindWhat happened to it.
Trait Implementations§
Source§impl Clone for ReasoningChange
impl Clone for ReasoningChange
Source§fn clone(&self) -> ReasoningChange
fn clone(&self) -> ReasoningChange
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 ReasoningChange
impl Debug for ReasoningChange
Source§impl PartialEq for ReasoningChange
impl PartialEq for ReasoningChange
Source§fn eq(&self, other: &ReasoningChange) -> bool
fn eq(&self, other: &ReasoningChange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReasoningChange
Auto Trait Implementations§
impl Freeze for ReasoningChange
impl RefUnwindSafe for ReasoningChange
impl Send for ReasoningChange
impl Sync for ReasoningChange
impl Unpin for ReasoningChange
impl UnsafeUnpin for ReasoningChange
impl UnwindSafe for ReasoningChange
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