FheUint2

Type Alias FheUint2 

Source
pub type FheUint2 = FheUint<FheUint2Id>;
Expand description

An unsigned integer type with 2 bits

See FheUint

Aliased Type§

pub struct FheUint2 { /* private fields */ }

Trait Implementations§

Source§

impl Add<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl Add<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the + operator.
Source§

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

Performs the + operation. Read more
Source§

impl AddAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn add_assign(&mut self, rhs: u8)

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

Source§

impl AddSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_add_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl BitAnd<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAnd<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the & operator.
Source§

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

Performs the & operation. Read more
Source§

impl BitAndAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn bitand_assign(&mut self, rhs: u8)

Performs the &= operation. Read more
Source§

impl BitAndSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_bitand_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl BitOr<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOr<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the | operator.
Source§

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

Performs the | operation. Read more
Source§

impl BitOrAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn bitor_assign(&mut self, rhs: u8)

Performs the |= operation. Read more
Source§

impl BitOrSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_bitor_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl BitXor<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXor<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the ^ operator.
Source§

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

Performs the ^ operation. Read more
Source§

impl BitXorAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn bitxor_assign(&mut self, rhs: u8)

Performs the ^= operation. Read more
Source§

impl BitXorSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_bitxor_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl Div<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl Div<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the / operator.
Source§

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

Performs the / operation. Read more
Source§

impl DivAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn div_assign(&mut self, rhs: u8)

Performs the /= operation. Read more
Source§

impl DivRem<u8> for &FheUint2

Available on crate feature integer only.
Source§

impl DivRem<u8> for FheUint2

Available on crate feature integer only.
Source§

impl DivRemSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_div_rem_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl DivSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_div_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl Mul<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl Mul<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the * operator.
Source§

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

Performs the * operation. Read more
Source§

impl MulAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn mul_assign(&mut self, rhs: u8)

Performs the *= operation. Read more
Source§

impl MulSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_mul_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl Rem<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl Rem<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the % operator.
Source§

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

Performs the % operation. Read more
Source§

impl RemAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn rem_assign(&mut self, rhs: u8)

Performs the %= operation. Read more
Source§

impl RemSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_rem_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl RotateLeft<u128> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u128> for FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u16> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u16> for FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u32> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u32> for FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u64> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u64> for FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u8> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateLeft<u8> for FheUint2

Available on crate feature integer only.
Source§

impl RotateLeftAssign<u128> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_left_assign(&mut self, rhs: u128)

Source§

impl RotateLeftAssign<u16> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_left_assign(&mut self, rhs: u16)

Source§

impl RotateLeftAssign<u32> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_left_assign(&mut self, rhs: u32)

Source§

impl RotateLeftAssign<u64> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_left_assign(&mut self, rhs: u64)

Source§

impl RotateLeftAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_left_assign(&mut self, rhs: u8)

Source§

impl RotateLeftSizeOnGpu<u128> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_left_size_on_gpu(&self, rhs: u128) -> u64

Available on crate feature gpu only.
Source§

impl RotateLeftSizeOnGpu<u16> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_left_size_on_gpu(&self, rhs: u16) -> u64

Available on crate feature gpu only.
Source§

impl RotateLeftSizeOnGpu<u32> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_left_size_on_gpu(&self, rhs: u32) -> u64

Available on crate feature gpu only.
Source§

impl RotateLeftSizeOnGpu<u64> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_left_size_on_gpu(&self, rhs: u64) -> u64

Available on crate feature gpu only.
Source§

impl RotateLeftSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_left_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl RotateRight<u128> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u128> for FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u16> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u16> for FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u32> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u32> for FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u64> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u64> for FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u8> for &FheUint2

Available on crate feature integer only.
Source§

impl RotateRight<u8> for FheUint2

Available on crate feature integer only.
Source§

impl RotateRightAssign<u128> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_right_assign(&mut self, rhs: u128)

Source§

impl RotateRightAssign<u16> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_right_assign(&mut self, rhs: u16)

Source§

impl RotateRightAssign<u32> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_right_assign(&mut self, rhs: u32)

Source§

impl RotateRightAssign<u64> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_right_assign(&mut self, rhs: u64)

Source§

impl RotateRightAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn rotate_right_assign(&mut self, rhs: u8)

Source§

impl RotateRightSizeOnGpu<u128> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_right_size_on_gpu(&self, rhs: u128) -> u64

Available on crate feature gpu only.
Source§

impl RotateRightSizeOnGpu<u16> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_right_size_on_gpu(&self, rhs: u16) -> u64

Available on crate feature gpu only.
Source§

impl RotateRightSizeOnGpu<u32> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_right_size_on_gpu(&self, rhs: u32) -> u64

Available on crate feature gpu only.
Source§

impl RotateRightSizeOnGpu<u64> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_right_size_on_gpu(&self, rhs: u64) -> u64

Available on crate feature gpu only.
Source§

impl RotateRightSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_rotate_right_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl Shl<u128> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

fn shl_assign(&mut self, rhs: u128)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u16> for FheUint2

Available on crate feature integer only.
Source§

fn shl_assign(&mut self, rhs: u16)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u32> for FheUint2

Available on crate feature integer only.
Source§

fn shl_assign(&mut self, rhs: u32)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u64> for FheUint2

Available on crate feature integer only.
Source§

fn shl_assign(&mut self, rhs: u64)

Performs the <<= operation. Read more
Source§

impl ShlAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn shl_assign(&mut self, rhs: u8)

Performs the <<= operation. Read more
Source§

impl ShlSizeOnGpu<u128> for FheUint2

Available on crate feature integer only.
Source§

fn get_left_shift_size_on_gpu(&self, rhs: u128) -> u64

Available on crate feature gpu only.
Source§

impl ShlSizeOnGpu<u16> for FheUint2

Available on crate feature integer only.
Source§

fn get_left_shift_size_on_gpu(&self, rhs: u16) -> u64

Available on crate feature gpu only.
Source§

impl ShlSizeOnGpu<u32> for FheUint2

Available on crate feature integer only.
Source§

fn get_left_shift_size_on_gpu(&self, rhs: u32) -> u64

Available on crate feature gpu only.
Source§

impl ShlSizeOnGpu<u64> for FheUint2

Available on crate feature integer only.
Source§

fn get_left_shift_size_on_gpu(&self, rhs: u64) -> u64

Available on crate feature gpu only.
Source§

impl ShlSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_left_shift_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl Shr<u128> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

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 FheUint2

Available on crate feature integer only.
Source§

fn shr_assign(&mut self, rhs: u128)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u16> for FheUint2

Available on crate feature integer only.
Source§

fn shr_assign(&mut self, rhs: u16)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u32> for FheUint2

Available on crate feature integer only.
Source§

fn shr_assign(&mut self, rhs: u32)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u64> for FheUint2

Available on crate feature integer only.
Source§

fn shr_assign(&mut self, rhs: u64)

Performs the >>= operation. Read more
Source§

impl ShrAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn shr_assign(&mut self, rhs: u8)

Performs the >>= operation. Read more
Source§

impl ShrSizeOnGpu<u128> for FheUint2

Available on crate feature integer only.
Source§

fn get_right_shift_size_on_gpu(&self, rhs: u128) -> u64

Available on crate feature gpu only.
Source§

impl ShrSizeOnGpu<u16> for FheUint2

Available on crate feature integer only.
Source§

fn get_right_shift_size_on_gpu(&self, rhs: u16) -> u64

Available on crate feature gpu only.
Source§

impl ShrSizeOnGpu<u32> for FheUint2

Available on crate feature integer only.
Source§

fn get_right_shift_size_on_gpu(&self, rhs: u32) -> u64

Available on crate feature gpu only.
Source§

impl ShrSizeOnGpu<u64> for FheUint2

Available on crate feature integer only.
Source§

fn get_right_shift_size_on_gpu(&self, rhs: u64) -> u64

Available on crate feature gpu only.
Source§

impl ShrSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_right_shift_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.
Source§

impl Sub<u8> for &FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl Sub<u8> for FheUint2

Available on crate feature integer only.
Source§

type Output = FheUint<FheUint2Id>

The resulting type after applying the - operator.
Source§

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

Performs the - operation. Read more
Source§

impl SubAssign<u8> for FheUint2

Available on crate feature integer only.
Source§

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
Source§

impl SubSizeOnGpu<u8> for FheUint2

Available on crate feature integer only.
Source§

fn get_sub_size_on_gpu(&self, rhs: u8) -> u64

Available on crate feature gpu only.