pub struct WasmVecVecFq(pub Vec<Vec<Fq>>);
Tuple Fields§
§0: Vec<Vec<Fq>>
Implementations§
Source§impl WasmVecVecFq
impl WasmVecVecFq
pub fn create(n: i32) -> Self
pub fn push(&mut self, x: WasmFlatVector<WasmPastaFq>)
pub fn get(&self, i: i32) -> WasmFlatVector<WasmPastaFq>
pub fn set(&mut self, i: i32, x: WasmFlatVector<WasmPastaFq>)
Trait Implementations§
Source§impl From<WasmVecVecFq> for JsValue
impl From<WasmVecVecFq> for JsValue
Source§fn from(value: WasmVecVecFq) -> Self
fn from(value: WasmVecVecFq) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for WasmVecVecFq
impl FromWasmAbi for WasmVecVecFq
Source§impl IntoWasmAbi for WasmVecVecFq
impl IntoWasmAbi for WasmVecVecFq
Source§impl LongRefFromWasmAbi for WasmVecVecFq
impl LongRefFromWasmAbi for WasmVecVecFq
Source§impl OptionFromWasmAbi for WasmVecVecFq
impl OptionFromWasmAbi for WasmVecVecFq
Source§impl OptionIntoWasmAbi for WasmVecVecFq
impl OptionIntoWasmAbi for WasmVecVecFq
Source§impl RefFromWasmAbi for WasmVecVecFq
impl RefFromWasmAbi for WasmVecVecFq
Source§type Anchor = Ref<'static, WasmVecVecFq>
type Anchor = Ref<'static, WasmVecVecFq>
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 RefMutFromWasmAbi for WasmVecVecFq
impl RefMutFromWasmAbi for WasmVecVecFq
Source§impl TryFromJsValue for WasmVecVecFq
impl TryFromJsValue for WasmVecVecFq
Source§impl VectorFromWasmAbi for WasmVecVecFq
impl VectorFromWasmAbi for WasmVecVecFq
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[WasmVecVecFq]>
Source§impl VectorIntoWasmAbi for WasmVecVecFq
impl VectorIntoWasmAbi for WasmVecVecFq
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[WasmVecVecFq]>) -> Self::Abi
Source§impl WasmDescribeVector for WasmVecVecFq
impl WasmDescribeVector for WasmVecVecFq
Auto Trait Implementations§
impl Freeze for WasmVecVecFq
impl RefUnwindSafe for WasmVecVecFq
impl Send for WasmVecVecFq
impl Sync for WasmVecVecFq
impl Unpin for WasmVecVecFq
impl UnwindSafe for WasmVecVecFq
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
§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::Abi
Source§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
.