pub struct Details {
pub domain: String,
pub ephemeral_key: String,
pub master_key: String,
pub seq: u32,
}
Fields§
§domain: String
The domain name this validator claims to be associated with. If the manifest does not contain a domain, this is an empty string.
ephemeral_key: String
The ephemeral public key for this validator, in base58.
master_key: String
The master public key for this validator, in base58.
seq: u32
The sequence number of this manifest. This number increases whenever the validator operator updates the validator’s token to rotate ephemeral keys or change settings.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Details
impl<'de> Deserialize<'de> for Details
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 Details
impl RefUnwindSafe for Details
impl Send for Details
impl Sync for Details
impl Unpin for Details
impl UnwindSafe for Details
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