pub struct InclusionProof { /* private fields */ }Expand description
RFC 6962 inclusion proof: list of (sibling_hash, side) steps from the leaf to the root.
Implementations§
Trait Implementations§
Source§impl From<InclusionProof> for JsValue
impl From<InclusionProof> for JsValue
Source§fn from(value: InclusionProof) -> Self
fn from(value: InclusionProof) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for InclusionProof
impl FromWasmAbi for InclusionProof
Source§impl IntoWasmAbi for InclusionProof
impl IntoWasmAbi for InclusionProof
Source§impl LongRefFromWasmAbi for InclusionProof
impl LongRefFromWasmAbi for InclusionProof
Source§type Abi = WasmPtr<WasmRefCell<InclusionProof>>
type Abi = WasmPtr<WasmRefCell<InclusionProof>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRef<InclusionProof>
type Anchor = RcRef<InclusionProof>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn long_ref_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiSource§impl OptionFromWasmAbi for InclusionProof
impl OptionFromWasmAbi for InclusionProof
Source§impl OptionIntoWasmAbi for InclusionProof
impl OptionIntoWasmAbi for InclusionProof
Source§impl RefFromWasmAbi for InclusionProof
impl RefFromWasmAbi for InclusionProof
Source§type Abi = WasmPtr<WasmRefCell<InclusionProof>>
type Abi = WasmPtr<WasmRefCell<InclusionProof>>
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = RcRef<InclusionProof>
type Anchor = RcRef<InclusionProof>
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 InclusionProof
impl RefMutFromWasmAbi for InclusionProof
Source§type Abi = WasmPtr<WasmRefCell<InclusionProof>>
type Abi = WasmPtr<WasmRefCell<InclusionProof>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRefMut<InclusionProof>
type Anchor = RcRefMut<InclusionProof>
Same as
RefFromWasmAbi::AnchorSource§unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
unsafe fn ref_mut_from_abi(js: Self::Abi) -> Self::Anchor
Same as
RefFromWasmAbi::ref_from_abiimpl SupportsConstructor for InclusionProof
impl SupportsInstanceProperty for InclusionProof
impl SupportsStaticProperty for InclusionProof
Source§impl TryFromJsValue for InclusionProof
impl TryFromJsValue for InclusionProof
Source§impl VectorFromWasmAbi for InclusionProof
impl VectorFromWasmAbi for InclusionProof
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[InclusionProof]>
Source§impl VectorIntoWasmAbi for InclusionProof
impl VectorIntoWasmAbi for InclusionProof
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[InclusionProof]>) -> Self::Abi
Source§impl WasmDescribeVector for InclusionProof
impl WasmDescribeVector for InclusionProof
Auto Trait Implementations§
impl Freeze for InclusionProof
impl RefUnwindSafe for InclusionProof
impl Send for InclusionProof
impl Sync for InclusionProof
impl Unpin for InclusionProof
impl UnsafeUnpin for InclusionProof
impl UnwindSafe for InclusionProof
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
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.