pub struct BlockBuilder(/* private fields */);Expand description
Creates a block to attenuate a token
Implementations§
Trait Implementations§
Source§impl From<BlockBuilder> for JsValue
impl From<BlockBuilder> for JsValue
Source§fn from(value: BlockBuilder) -> Self
fn from(value: BlockBuilder) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for BlockBuilder
impl FromWasmAbi for BlockBuilder
Source§impl IntoWasmAbi for BlockBuilder
impl IntoWasmAbi for BlockBuilder
Source§impl LongRefFromWasmAbi for BlockBuilder
impl LongRefFromWasmAbi for BlockBuilder
Source§impl OptionFromWasmAbi for BlockBuilder
impl OptionFromWasmAbi for BlockBuilder
Source§impl OptionIntoWasmAbi for BlockBuilder
impl OptionIntoWasmAbi for BlockBuilder
Source§impl RefFromWasmAbi for BlockBuilder
impl RefFromWasmAbi for BlockBuilder
Source§type Anchor = RcRef<BlockBuilder>
type Anchor = RcRef<BlockBuilder>
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 BlockBuilder
impl RefMutFromWasmAbi for BlockBuilder
Source§impl TryFromJsValue for BlockBuilder
impl TryFromJsValue for BlockBuilder
Source§impl VectorFromWasmAbi for BlockBuilder
impl VectorFromWasmAbi for BlockBuilder
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[BlockBuilder]>
Source§impl VectorIntoWasmAbi for BlockBuilder
impl VectorIntoWasmAbi for BlockBuilder
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[BlockBuilder]>) -> Self::Abi
Source§impl WasmDescribeVector for BlockBuilder
impl WasmDescribeVector for BlockBuilder
impl SupportsConstructor for BlockBuilder
impl SupportsInstanceProperty for BlockBuilder
impl SupportsStaticProperty for BlockBuilder
Auto Trait Implementations§
impl Freeze for BlockBuilder
impl RefUnwindSafe for BlockBuilder
impl Send for BlockBuilder
impl Sync for BlockBuilder
impl Unpin for BlockBuilder
impl UnwindSafe for BlockBuilder
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> 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.