pub struct QueryGradients {
pub atom: GroundAtom,
pub log_prob: f64,
pub prob: f64,
pub grad_true: Vec<f64>,
pub grad_false: Vec<f64>,
}Fields§
§atom: GroundAtom§log_prob: f64§prob: f64§grad_true: Vec<f64>§grad_false: Vec<f64>Trait Implementations§
Source§impl Clone for QueryGradients
impl Clone for QueryGradients
Source§fn clone(&self) -> QueryGradients
fn clone(&self) -> QueryGradients
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 QueryGradients
impl RefUnwindSafe for QueryGradients
impl Send for QueryGradients
impl Sync for QueryGradients
impl Unpin for QueryGradients
impl UnsafeUnpin for QueryGradients
impl UnwindSafe for QueryGradients
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