pub struct GetPublicKeyArgs {
pub identity_key: bool,
pub protocol_id: Option<Protocol>,
pub key_id: Option<String>,
pub counterparty: Option<Counterparty>,
pub privileged: bool,
pub privileged_reason: Option<String>,
pub for_self: Option<bool>,
pub seek_permission: Option<bool>,
}Expand description
Arguments for getting a public key.
Fields§
§identity_key: bool§protocol_id: Option<Protocol>§key_id: Option<String>§counterparty: Option<Counterparty>§privileged: bool§privileged_reason: Option<String>§for_self: Option<bool>§seek_permission: Option<bool>Trait Implementations§
Source§impl Clone for GetPublicKeyArgs
impl Clone for GetPublicKeyArgs
Source§fn clone(&self) -> GetPublicKeyArgs
fn clone(&self) -> GetPublicKeyArgs
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 moreAuto Trait Implementations§
impl Freeze for GetPublicKeyArgs
impl !RefUnwindSafe for GetPublicKeyArgs
impl Send for GetPublicKeyArgs
impl Sync for GetPublicKeyArgs
impl Unpin for GetPublicKeyArgs
impl UnsafeUnpin for GetPublicKeyArgs
impl !UnwindSafe for GetPublicKeyArgs
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