pub struct EthKeystore {
pub crypto: CryptoJson,
pub id: Uuid,
pub version: u8,
}
Expand description
This struct represents the deserialized form of an encrypted JSON keystore based on the Web3 Secret Storage Definition.
Fields§
§crypto: CryptoJson
§id: Uuid
§version: u8
Trait Implementations§
Source§impl Debug for EthKeystore
impl Debug for EthKeystore
Source§impl<'de> Deserialize<'de> for EthKeystore
impl<'de> Deserialize<'de> for EthKeystore
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
Auto Trait Implementations§
impl Freeze for EthKeystore
impl RefUnwindSafe for EthKeystore
impl Send for EthKeystore
impl Sync for EthKeystore
impl Unpin for EthKeystore
impl UnwindSafe for EthKeystore
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