pub enum AutoDiffThunkKind {
SubsetParameters,
DerivativeVTable,
Unknown,
}Expand description
The kind of autodiff thunk.
Variants§
SubsetParameters
Subset parameters thunk.
DerivativeVTable
Derivative vtable thunk.
Unknown
Unknown autodiff kind.
Implementations§
Trait Implementations§
Source§impl Clone for AutoDiffThunkKind
impl Clone for AutoDiffThunkKind
Source§fn clone(&self) -> AutoDiffThunkKind
fn clone(&self) -> AutoDiffThunkKind
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 AutoDiffThunkKind
impl Debug for AutoDiffThunkKind
Source§impl PartialEq for AutoDiffThunkKind
impl PartialEq for AutoDiffThunkKind
impl Copy for AutoDiffThunkKind
impl Eq for AutoDiffThunkKind
impl StructuralPartialEq for AutoDiffThunkKind
Auto Trait Implementations§
impl Freeze for AutoDiffThunkKind
impl RefUnwindSafe for AutoDiffThunkKind
impl Send for AutoDiffThunkKind
impl Sync for AutoDiffThunkKind
impl Unpin for AutoDiffThunkKind
impl UnsafeUnpin for AutoDiffThunkKind
impl UnwindSafe for AutoDiffThunkKind
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