pub struct GetPublicKeyResult {
pub e_tag: Option<String>,
pub public_key: Option<PublicKey>,
}
Fields§
§e_tag: Option<String>
The current version of the public key. For example: E2QWRUHAPOMQZL
.
public_key: Option<PublicKey>
Return the public key.
Trait Implementations§
Source§impl Clone for GetPublicKeyResult
impl Clone for GetPublicKeyResult
Source§fn clone(&self) -> GetPublicKeyResult
fn clone(&self) -> GetPublicKeyResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GetPublicKeyResult
impl Debug for GetPublicKeyResult
Source§impl Default for GetPublicKeyResult
impl Default for GetPublicKeyResult
Source§fn default() -> GetPublicKeyResult
fn default() -> GetPublicKeyResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetPublicKeyResult
impl PartialEq for GetPublicKeyResult
impl StructuralPartialEq for GetPublicKeyResult
Auto Trait Implementations§
impl Freeze for GetPublicKeyResult
impl RefUnwindSafe for GetPublicKeyResult
impl Send for GetPublicKeyResult
impl Sync for GetPublicKeyResult
impl Unpin for GetPublicKeyResult
impl UnwindSafe for GetPublicKeyResult
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