pub enum Plane {
Elect,
All(UnaryOperator),
Any(UnaryOperator),
Broadcast(BinaryOperator),
Sum(UnaryOperator),
Prod(UnaryOperator),
Min(UnaryOperator),
Max(UnaryOperator),
}
Expand description
All plane operations.
Note that not all backends support plane (warp/subgroup) operations. Use the runtime flag.
Variants§
Elect
All(UnaryOperator)
Any(UnaryOperator)
Broadcast(BinaryOperator)
Sum(UnaryOperator)
Prod(UnaryOperator)
Min(UnaryOperator)
Max(UnaryOperator)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Plane
impl<'de> Deserialize<'de> for Plane
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Plane
Auto Trait Implementations§
impl Freeze for Plane
impl RefUnwindSafe for Plane
impl Send for Plane
impl Sync for Plane
impl Unpin for Plane
impl UnwindSafe for Plane
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