pub struct CompositeVerificationResult { /* private fields */ }Expand description
Per-component + aggregate verification outcome.
Implementations§
Source§impl CompositeVerificationResult
impl CompositeVerificationResult
Sourcepub fn all_verified(&self) -> bool
pub fn all_verified(&self) -> bool
True iff every component verified.
Sourcepub fn per_component_json(&self) -> String
pub fn per_component_json(&self) -> String
JSON array of { index, algorithm, verified, error? } entries —
one per component. Returned as a JSON string because wasm-bindgen
doesn’t natively marshal Vec
Trait Implementations§
Source§impl From<CompositeVerificationResult> for JsValue
impl From<CompositeVerificationResult> for JsValue
Source§fn from(value: CompositeVerificationResult) -> Self
fn from(value: CompositeVerificationResult) -> Self
Converts to this type from the input type.
Source§impl LongRefFromWasmAbi for CompositeVerificationResult
impl LongRefFromWasmAbi for CompositeVerificationResult
Source§type Abi = WasmPtr<WasmRefCell<CompositeVerificationResult>>
type Abi = WasmPtr<WasmRefCell<CompositeVerificationResult>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRef<CompositeVerificationResult>
type Anchor = RcRef<CompositeVerificationResult>
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 RefFromWasmAbi for CompositeVerificationResult
impl RefFromWasmAbi for CompositeVerificationResult
Source§type Abi = WasmPtr<WasmRefCell<CompositeVerificationResult>>
type Abi = WasmPtr<WasmRefCell<CompositeVerificationResult>>
The Wasm ABI type references to
Self are recovered from.Source§type Anchor = RcRef<CompositeVerificationResult>
type Anchor = RcRef<CompositeVerificationResult>
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 CompositeVerificationResult
impl RefMutFromWasmAbi for CompositeVerificationResult
Source§type Abi = WasmPtr<WasmRefCell<CompositeVerificationResult>>
type Abi = WasmPtr<WasmRefCell<CompositeVerificationResult>>
Same as
RefFromWasmAbi::AbiSource§type Anchor = RcRefMut<CompositeVerificationResult>
type Anchor = RcRefMut<CompositeVerificationResult>
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 CompositeVerificationResult
impl SupportsInstanceProperty for CompositeVerificationResult
impl SupportsStaticProperty for CompositeVerificationResult
Source§impl VectorFromWasmAbi for CompositeVerificationResult
impl VectorFromWasmAbi for CompositeVerificationResult
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[CompositeVerificationResult]>
Source§impl VectorIntoWasmAbi for CompositeVerificationResult
impl VectorIntoWasmAbi for CompositeVerificationResult
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[CompositeVerificationResult]>) -> Self::Abi
Source§impl WasmDescribeVector for CompositeVerificationResult
impl WasmDescribeVector for CompositeVerificationResult
Auto Trait Implementations§
impl Freeze for CompositeVerificationResult
impl RefUnwindSafe for CompositeVerificationResult
impl Send for CompositeVerificationResult
impl Sync for CompositeVerificationResult
impl Unpin for CompositeVerificationResult
impl UnsafeUnpin for CompositeVerificationResult
impl UnwindSafe for CompositeVerificationResult
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.