pub struct WasmFqLookupSelectors {
    pub xor: Option<WasmFqPolyComm>,
    pub lookup: Option<WasmFqPolyComm>,
    pub range_check: Option<WasmFqPolyComm>,
    pub ffmul: Option<WasmFqPolyComm>,
}Fields§
§xor: Option<WasmFqPolyComm>§lookup: Option<WasmFqPolyComm>§range_check: Option<WasmFqPolyComm>§ffmul: Option<WasmFqPolyComm>Implementations§
Source§impl WasmFqLookupSelectors
 
impl WasmFqLookupSelectors
pub fn new( xor: Option<WasmPolyComm>, lookup: Option<WasmPolyComm>, range_check: Option<WasmPolyComm>, ffmul: Option<WasmPolyComm>, ) -> Self
pub fn xor(&self) -> Option<WasmPolyComm>
pub fn set_xor(&mut self, x: Option<WasmPolyComm>)
pub fn lookup(&self) -> Option<WasmPolyComm>
pub fn set_lookup(&mut self, x: Option<WasmPolyComm>)
pub fn ffmul(&self) -> Option<WasmPolyComm>
pub fn set_ffmul(&mut self, x: Option<WasmPolyComm>)
pub fn range_check(&self) -> Option<WasmPolyComm>
pub fn set_range_check(&mut self, x: Option<WasmPolyComm>)
Trait Implementations§
Source§impl Clone for WasmFqLookupSelectors
 
impl Clone for WasmFqLookupSelectors
Source§fn clone(&self) -> WasmFqLookupSelectors
 
fn clone(&self) -> WasmFqLookupSelectors
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl From<&LookupSelectors<PolyComm<Affine<PallasParameters>>>> for WasmFqLookupSelectors
 
impl From<&LookupSelectors<PolyComm<Affine<PallasParameters>>>> for WasmFqLookupSelectors
Source§impl From<&WasmFqLookupSelectors> for LookupSelectors<PolyComm<Pallas>>
 
impl From<&WasmFqLookupSelectors> for LookupSelectors<PolyComm<Pallas>>
Source§fn from(x: &WasmFqLookupSelectors) -> Self
 
fn from(x: &WasmFqLookupSelectors) -> Self
Converts to this type from the input type.
Source§impl From<LookupSelectors<PolyComm<Affine<PallasParameters>>>> for WasmFqLookupSelectors
 
impl From<LookupSelectors<PolyComm<Affine<PallasParameters>>>> for WasmFqLookupSelectors
Source§impl From<WasmFqLookupSelectors> for JsValue
 
impl From<WasmFqLookupSelectors> for JsValue
Source§fn from(value: WasmFqLookupSelectors) -> Self
 
fn from(value: WasmFqLookupSelectors) -> Self
Converts to this type from the input type.
Source§impl From<WasmFqLookupSelectors> for LookupSelectors<PolyComm<Pallas>>
 
impl From<WasmFqLookupSelectors> for LookupSelectors<PolyComm<Pallas>>
Source§fn from(x: WasmFqLookupSelectors) -> Self
 
fn from(x: WasmFqLookupSelectors) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for WasmFqLookupSelectors
 
impl FromWasmAbi for WasmFqLookupSelectors
Source§impl IntoWasmAbi for WasmFqLookupSelectors
 
impl IntoWasmAbi for WasmFqLookupSelectors
Source§impl RefFromWasmAbi for WasmFqLookupSelectors
 
impl RefFromWasmAbi for WasmFqLookupSelectors
Source§type Anchor = Ref<'static, WasmFqLookupSelectors>
 
type Anchor = Ref<'static, WasmFqLookupSelectors>
The type that holds the reference to 
Self for the duration of the
invocation of the function that has an &Self parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl VectorFromWasmAbi for WasmFqLookupSelectors
 
impl VectorFromWasmAbi for WasmFqLookupSelectors
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[WasmFqLookupSelectors]>
Source§impl VectorIntoWasmAbi for WasmFqLookupSelectors
 
impl VectorIntoWasmAbi for WasmFqLookupSelectors
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[WasmFqLookupSelectors]>) -> Self::Abi
Source§impl WasmDescribeVector for WasmFqLookupSelectors
 
impl WasmDescribeVector for WasmFqLookupSelectors
Auto Trait Implementations§
impl Freeze for WasmFqLookupSelectors
impl RefUnwindSafe for WasmFqLookupSelectors
impl Send for WasmFqLookupSelectors
impl Sync for WasmFqLookupSelectors
impl Unpin for WasmFqLookupSelectors
impl UnwindSafe for WasmFqLookupSelectors
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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
§impl<T> Pointable for T
 
impl<T> Pointable for T
Source§impl<T> ReturnWasmAbi for Twhere
    T: IntoWasmAbi,
 
impl<T> ReturnWasmAbi for Twhere
    T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
 
type Abi = <T as IntoWasmAbi>::Abi
Same as 
IntoWasmAbi::AbiSource§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
 
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as 
IntoWasmAbi::into_abi, except that it may throw and never
return in the case of Err.