pub struct ParadoxReport {
pub id: Uuid,
pub description: String,
pub conflicting_perceptions: Vec<PerceptionId>,
pub resolution_strategy: ParadoxStrategy,
pub confidence_impact: f64,
}Expand description
Report of paradox detection and handling
Fields§
§id: Uuid§description: String§conflicting_perceptions: Vec<PerceptionId>§resolution_strategy: ParadoxStrategy§confidence_impact: f64Trait Implementations§
Source§impl Clone for ParadoxReport
impl Clone for ParadoxReport
Source§fn clone(&self) -> ParadoxReport
fn clone(&self) -> ParadoxReport
Returns a duplicate of the value. Read more
1.0.0 · 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 ParadoxReport
impl Debug for ParadoxReport
Source§impl<'de> Deserialize<'de> for ParadoxReport
impl<'de> Deserialize<'de> for ParadoxReport
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 ParadoxReport
impl RefUnwindSafe for ParadoxReport
impl Send for ParadoxReport
impl Sync for ParadoxReport
impl Unpin for ParadoxReport
impl UnwindSafe for ParadoxReport
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