#[non_exhaustive]pub enum BoundaryTensorDtype {
Activation,
Uint32,
Int32,
}Expand description
Logical scalar kind carried by one architecture-owned boundary tensor.
Activation is resolved by a concrete backend to the execution dtype
selected for the surrounding pipeline activation. Integer kinds are exact.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Activation
The selected execution activation dtype.
Uint32
Exact unsigned 32-bit integer values.
Int32
Exact signed 32-bit integer values.
Trait Implementations§
Source§impl Clone for BoundaryTensorDtype
impl Clone for BoundaryTensorDtype
Source§fn clone(&self) -> BoundaryTensorDtype
fn clone(&self) -> BoundaryTensorDtype
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 BoundaryTensorDtype
Source§impl Debug for BoundaryTensorDtype
impl Debug for BoundaryTensorDtype
impl Eq for BoundaryTensorDtype
Source§impl Hash for BoundaryTensorDtype
impl Hash for BoundaryTensorDtype
Source§impl PartialEq for BoundaryTensorDtype
impl PartialEq for BoundaryTensorDtype
impl StructuralPartialEq for BoundaryTensorDtype
Auto Trait Implementations§
impl Freeze for BoundaryTensorDtype
impl RefUnwindSafe for BoundaryTensorDtype
impl Send for BoundaryTensorDtype
impl Sync for BoundaryTensorDtype
impl Unpin for BoundaryTensorDtype
impl UnsafeUnpin for BoundaryTensorDtype
impl UnwindSafe for BoundaryTensorDtype
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