pub struct DIDPeerResult {
pub did: String,
pub keys: Vec<DIDPeerCreatedKeys>,
}
Fields§
§did: String
§keys: Vec<DIDPeerCreatedKeys>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DIDPeerResult
impl<'de> Deserialize<'de> for DIDPeerResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<DIDPeerResult> for JsValue
impl From<DIDPeerResult> for JsValue
Source§fn from(value: DIDPeerResult) -> Self
fn from(value: DIDPeerResult) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for DIDPeerResult
impl FromWasmAbi for DIDPeerResult
Source§impl IntoWasmAbi for DIDPeerResult
impl IntoWasmAbi for DIDPeerResult
Source§impl LongRefFromWasmAbi for DIDPeerResult
impl LongRefFromWasmAbi for DIDPeerResult
Source§impl OptionFromWasmAbi for DIDPeerResult
impl OptionFromWasmAbi for DIDPeerResult
Source§impl OptionIntoWasmAbi for DIDPeerResult
impl OptionIntoWasmAbi for DIDPeerResult
Source§impl RefFromWasmAbi for DIDPeerResult
impl RefFromWasmAbi for DIDPeerResult
Source§type Anchor = RcRef<DIDPeerResult>
type Anchor = RcRef<DIDPeerResult>
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 DIDPeerResult
impl RefMutFromWasmAbi for DIDPeerResult
Source§impl Serialize for DIDPeerResult
impl Serialize for DIDPeerResult
Source§impl TryFromJsValue for DIDPeerResult
impl TryFromJsValue for DIDPeerResult
Source§impl VectorFromWasmAbi for DIDPeerResult
impl VectorFromWasmAbi for DIDPeerResult
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[DIDPeerResult]>
Source§impl VectorIntoWasmAbi for DIDPeerResult
impl VectorIntoWasmAbi for DIDPeerResult
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[DIDPeerResult]>) -> Self::Abi
Source§impl WasmDescribeVector for DIDPeerResult
impl WasmDescribeVector for DIDPeerResult
impl SupportsConstructor for DIDPeerResult
impl SupportsInstanceProperty for DIDPeerResult
impl SupportsStaticProperty for DIDPeerResult
Auto Trait Implementations§
impl Freeze for DIDPeerResult
impl RefUnwindSafe for DIDPeerResult
impl Send for DIDPeerResult
impl Sync for DIDPeerResult
impl Unpin for DIDPeerResult
impl UnwindSafe for DIDPeerResult
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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
.