pub enum ResidentRhsLowering {
TensorExpression,
NonLowerable,
}Expand description
Provider-side lowering classification for a tensor RHS.
Variants§
TensorExpression
RHS is a lowerable tensor expression.
NonLowerable
RHS is host-only or effectful and must not be accepted by resident ODE.
Trait Implementations§
Source§impl Clone for ResidentRhsLowering
impl Clone for ResidentRhsLowering
Source§fn clone(&self) -> ResidentRhsLowering
fn clone(&self) -> ResidentRhsLowering
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResidentRhsLowering
Source§impl Debug for ResidentRhsLowering
impl Debug for ResidentRhsLowering
impl Eq for ResidentRhsLowering
Source§impl PartialEq for ResidentRhsLowering
impl PartialEq for ResidentRhsLowering
impl StructuralPartialEq for ResidentRhsLowering
Auto Trait Implementations§
impl Freeze for ResidentRhsLowering
impl RefUnwindSafe for ResidentRhsLowering
impl Send for ResidentRhsLowering
impl Sync for ResidentRhsLowering
impl Unpin for ResidentRhsLowering
impl UnsafeUnpin for ResidentRhsLowering
impl UnwindSafe for ResidentRhsLowering
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