pub struct DisclosureEvidence {
pub label: &'static str,
pub bayes_factor: f64,
pub direction: EvidenceDirection,
}Expand description
An evidence term exposed at disclosure level 2+.
Fields§
§label: &'static strHuman-readable label for this evidence factor.
bayes_factor: f64Bayes factor (likelihood ratio) for this evidence.
direction: EvidenceDirectionDirection: positive means supporting the chosen action.
Trait Implementations§
Source§impl Clone for DisclosureEvidence
impl Clone for DisclosureEvidence
Source§fn clone(&self) -> DisclosureEvidence
fn clone(&self) -> DisclosureEvidence
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 moreAuto Trait Implementations§
impl Freeze for DisclosureEvidence
impl RefUnwindSafe for DisclosureEvidence
impl Send for DisclosureEvidence
impl Sync for DisclosureEvidence
impl Unpin for DisclosureEvidence
impl UnsafeUnpin for DisclosureEvidence
impl UnwindSafe for DisclosureEvidence
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