pub enum MissingOpMode {
PerOperand,
None,
Error,
}Expand description
Feature partial - What should happen in case for an operator the derivative is missing
Variants§
PerOperand
Compute partial derviatives per operand like for +
None
Do not compute partial derivatives and keep the operands as they were
Error
Return an error
Trait Implementations§
Source§impl Clone for MissingOpMode
impl Clone for MissingOpMode
Source§fn clone(&self) -> MissingOpMode
fn clone(&self) -> MissingOpMode
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 MissingOpMode
impl Debug for MissingOpMode
impl Copy for MissingOpMode
Auto Trait Implementations§
impl Freeze for MissingOpMode
impl RefUnwindSafe for MissingOpMode
impl Send for MissingOpMode
impl Sync for MissingOpMode
impl Unpin for MissingOpMode
impl UnwindSafe for MissingOpMode
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