pub struct DecryptResponse {
pub success: bool,
pub phrase: String,
pub words: Vec<String>,
}Expand description
WASM response payload for mnemonic decryption.
Fields§
§success: boolWhether decryption succeeded.
phrase: StringDecrypted BIP-39 phrase.
words: Vec<String>Decrypted phrase split into words.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DecryptResponse
impl RefUnwindSafe for DecryptResponse
impl Send for DecryptResponse
impl Sync for DecryptResponse
impl Unpin for DecryptResponse
impl UnsafeUnpin for DecryptResponse
impl UnwindSafe for DecryptResponse
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