pub struct ProphecyResult {
pub predictions: Vec<Prediction>,
}Expand description
Result of a prophecy query.
Fields§
§predictions: Vec<Prediction>Predictions sorted by risk.
Trait Implementations§
Source§impl Clone for ProphecyResult
impl Clone for ProphecyResult
Source§fn clone(&self) -> ProphecyResult
fn clone(&self) -> ProphecyResult
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 ProphecyResult
impl RefUnwindSafe for ProphecyResult
impl Send for ProphecyResult
impl Sync for ProphecyResult
impl Unpin for ProphecyResult
impl UnsafeUnpin for ProphecyResult
impl UnwindSafe for ProphecyResult
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