pub struct NapiFqGate {
pub typ: i32,
pub wires: NapiGateWires,
pub coeffs: Vec<u8>,
}Fields§
§typ: i32§wires: NapiGateWires§coeffs: Vec<u8>Implementations§
Source§impl NapiFqGate
impl NapiFqGate
fn into_inner(self) -> Result<CircuitGate<Fq>>
fn from_inner(value: &CircuitGate<Fq>) -> Self
Trait Implementations§
Source§impl Clone for NapiFqGate
impl Clone for NapiFqGate
Source§fn clone(&self) -> NapiFqGate
fn clone(&self) -> NapiFqGate
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 Debug for NapiFqGate
impl Debug for NapiFqGate
Source§impl Default for NapiFqGate
impl Default for NapiFqGate
Source§fn default() -> NapiFqGate
fn default() -> NapiFqGate
Returns the “default value” for a type. Read more
Source§impl FromNapiValue for NapiFqGate
impl FromNapiValue for NapiFqGate
Source§unsafe fn from_napi_value(
env: napi_env,
napi_val: napi_value,
) -> Result<NapiFqGate>
unsafe fn from_napi_value( env: napi_env, napi_val: napi_value, ) -> Result<NapiFqGate>
Safety Read more
fn from_unknown(value: Unknown<'_>) -> Result<Self, Error>
Source§impl ToNapiValue for NapiFqGate
impl ToNapiValue for NapiFqGate
Source§unsafe fn to_napi_value(env: napi_env, val: NapiFqGate) -> Result<napi_value>
unsafe fn to_napi_value(env: napi_env, val: NapiFqGate) -> Result<napi_value>
Safety Read more
fn into_unknown(self, env: &Env) -> Result<Unknown<'_>, Error>
Source§impl TypeName for NapiFqGate
impl TypeName for NapiFqGate
Auto Trait Implementations§
impl Freeze for NapiFqGate
impl RefUnwindSafe for NapiFqGate
impl Send for NapiFqGate
impl Sync for NapiFqGate
impl Unpin for NapiFqGate
impl UnsafeUnpin for NapiFqGate
impl UnwindSafe for NapiFqGate
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