FheInt2

Type Alias FheInt2 

Source
pub type FheInt2 = FheInt<FheInt2Id>;
Expand description

A signed integer type with 2 bits

See FheInt

Aliased Type§

pub struct FheInt2 { /* private fields */ }

Trait Implementations§

Source§

impl Add<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i8) -> Self::Output

Performs the + operation. Read more
Source§

impl Add<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: i8) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<i8> for FheInt2

Source§

fn add_assign(&mut self, rhs: i8)

Performs an addition assignment operation of a clear to a FheInt.

Source§

impl AddSizeOnGpu<i8> for FheInt2

Source§

impl BitAnd<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i8) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAnd<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: i8) -> Self::Output

Performs the & operation. Read more
Source§

impl BitAndAssign<i8> for FheInt2

Source§

fn bitand_assign(&mut self, rhs: i8)

Performs the &= operation. Read more
Source§

impl BitAndSizeOnGpu<i8> for FheInt2

Source§

impl BitOr<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i8) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOr<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: i8) -> Self::Output

Performs the | operation. Read more
Source§

impl BitOrAssign<i8> for FheInt2

Source§

fn bitor_assign(&mut self, rhs: i8)

Performs the |= operation. Read more
Source§

impl BitOrSizeOnGpu<i8> for FheInt2

Source§

impl BitXor<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i8) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXor<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: i8) -> Self::Output

Performs the ^ operation. Read more
Source§

impl BitXorAssign<i8> for FheInt2

Source§

fn bitxor_assign(&mut self, rhs: i8)

Performs the ^= operation. Read more
Source§

impl BitXorSizeOnGpu<i8> for FheInt2

Source§

impl Div<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i8) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: i8) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign<i8> for FheInt2

Source§

fn div_assign(&mut self, rhs: i8)

Performs the /= operation. Read more
Source§

impl DivRem<i8> for &FheInt2

Source§

impl DivRem<i8> for FheInt2

Source§

impl DivRemSizeOnGpu<i8> for FheInt2

Source§

impl DivSizeOnGpu<i8> for FheInt2

Source§

impl Mul<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: i8) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign<i8> for FheInt2

Source§

fn mul_assign(&mut self, rhs: i8)

Performs the *= operation. Read more
Source§

impl MulSizeOnGpu<i8> for FheInt2

Source§

impl Rem<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i8) -> Self::Output

Performs the % operation. Read more
Source§

impl Rem<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: i8) -> Self::Output

Performs the % operation. Read more
Source§

impl RemAssign<i8> for FheInt2

Source§

fn rem_assign(&mut self, rhs: i8)

Performs the %= operation. Read more
Source§

impl RemSizeOnGpu<i8> for FheInt2

Source§

impl RotateLeft<u128> for &FheInt2

Source§

impl RotateLeft<u128> for FheInt2

Source§

impl RotateLeft<u16> for &FheInt2

Source§

impl RotateLeft<u16> for FheInt2

Source§

impl RotateLeft<u32> for &FheInt2

Source§

impl RotateLeft<u32> for FheInt2

Source§

impl RotateLeft<u64> for &FheInt2

Source§

impl RotateLeft<u64> for FheInt2

Source§

impl RotateLeft<u8> for &FheInt2

Source§

impl RotateLeft<u8> for FheInt2

Source§

impl RotateLeftAssign<u128> for FheInt2

Source§

fn rotate_left_assign(&mut self, rhs: u128)

Source§

impl RotateLeftAssign<u16> for FheInt2

Source§

fn rotate_left_assign(&mut self, rhs: u16)

Source§

impl RotateLeftAssign<u32> for FheInt2

Source§

fn rotate_left_assign(&mut self, rhs: u32)

Source§

impl RotateLeftAssign<u64> for FheInt2

Source§

fn rotate_left_assign(&mut self, rhs: u64)

Source§

impl RotateLeftAssign<u8> for FheInt2

Source§

fn rotate_left_assign(&mut self, rhs: u8)

Source§

impl RotateLeftSizeOnGpu<u128> for FheInt2

Source§

impl RotateLeftSizeOnGpu<u16> for FheInt2

Source§

impl RotateLeftSizeOnGpu<u32> for FheInt2

Source§

impl RotateLeftSizeOnGpu<u64> for FheInt2

Source§

impl RotateLeftSizeOnGpu<u8> for FheInt2

Source§

impl RotateRight<u128> for &FheInt2

Source§

impl RotateRight<u128> for FheInt2

Source§

impl RotateRight<u16> for &FheInt2

Source§

impl RotateRight<u16> for FheInt2

Source§

impl RotateRight<u32> for &FheInt2

Source§

impl RotateRight<u32> for FheInt2

Source§

impl RotateRight<u64> for &FheInt2

Source§

impl RotateRight<u64> for FheInt2

Source§

impl RotateRight<u8> for &FheInt2

Source§

impl RotateRight<u8> for FheInt2

Source§

impl RotateRightAssign<u128> for FheInt2

Source§

fn rotate_right_assign(&mut self, rhs: u128)

Source§

impl RotateRightAssign<u16> for FheInt2

Source§

fn rotate_right_assign(&mut self, rhs: u16)

Source§

impl RotateRightAssign<u32> for FheInt2

Source§

fn rotate_right_assign(&mut self, rhs: u32)

Source§

impl RotateRightAssign<u64> for FheInt2

Source§

fn rotate_right_assign(&mut self, rhs: u64)

Source§

impl RotateRightAssign<u8> for FheInt2

Source§

fn rotate_right_assign(&mut self, rhs: u8)

Source§

impl RotateRightSizeOnGpu<u128> for FheInt2

Source§

impl RotateRightSizeOnGpu<u16> for FheInt2

Source§

impl RotateRightSizeOnGpu<u32> for FheInt2

Source§

impl RotateRightSizeOnGpu<u64> for FheInt2

Source§

impl RotateRightSizeOnGpu<u8> for FheInt2

Source§

impl Shl<u128> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u128) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u128> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u128) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u16> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u16> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u16) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u32> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u32> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u32) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u64> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u64> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u64) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u8) -> Self::Output

Performs the << operation. Read more
Source§

impl Shl<u8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the << operator.
Source§

fn shl(self, rhs: u8) -> Self::Output

Performs the << operation. Read more
Source§

impl ShlAssign<u128> for FheInt2

Source§

fn shl_assign(&mut self, rhs: u128)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u16> for FheInt2

Source§

fn shl_assign(&mut self, rhs: u16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u32> for FheInt2

Source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u64> for FheInt2

Source§

fn shl_assign(&mut self, rhs: u64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u8> for FheInt2

Source§

fn shl_assign(&mut self, rhs: u8)

Performs the <<= operation. Read more
Source§

impl ShlSizeOnGpu<u128> for FheInt2

Source§

impl ShlSizeOnGpu<u16> for FheInt2

Source§

impl ShlSizeOnGpu<u32> for FheInt2

Source§

impl ShlSizeOnGpu<u64> for FheInt2

Source§

impl ShlSizeOnGpu<u8> for FheInt2

Source§

impl Shr<u128> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u128) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u128> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u128) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u16> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u16> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u16) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u32> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u32> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u32) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u64> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u64> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u64) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u8) -> Self::Output

Performs the >> operation. Read more
Source§

impl Shr<u8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the >> operator.
Source§

fn shr(self, rhs: u8) -> Self::Output

Performs the >> operation. Read more
Source§

impl ShrAssign<u128> for FheInt2

Source§

fn shr_assign(&mut self, rhs: u128)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u16> for FheInt2

Source§

fn shr_assign(&mut self, rhs: u16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u32> for FheInt2

Source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u64> for FheInt2

Source§

fn shr_assign(&mut self, rhs: u64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u8> for FheInt2

Source§

fn shr_assign(&mut self, rhs: u8)

Performs the >>= operation. Read more
Source§

impl ShrSizeOnGpu<u128> for FheInt2

Source§

impl ShrSizeOnGpu<u16> for FheInt2

Source§

impl ShrSizeOnGpu<u32> for FheInt2

Source§

impl ShrSizeOnGpu<u64> for FheInt2

Source§

impl ShrSizeOnGpu<u8> for FheInt2

Source§

impl Sub<i8> for &FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i8) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub<i8> for FheInt2

Source§

type Output = FheInt<FheInt2Id>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: i8) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<i8> for FheInt2

Source§

fn sub_assign(&mut self, rhs: i8)

Performs the -= operation. Read more
Source§

impl SubSizeOnGpu<i8> for FheInt2