Coeff

Trait Coeff 

Source
pub trait Coeff:
    BitXor<Output = Self>
    + BitXorAssign
    + Copy
    + Clone
    + Pod
    + Sized
    + Sealed {
    const ZERO: Self;
}
Expand description

Sealed trait implemented for Block and u8.

Required Associated Constants§

Source

const ZERO: Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Coeff for u8

Source§

const ZERO: Self = 0u8

Source§

impl Coeff for Block

Source§

const ZERO: Self = Block::ZERO

Implementors§