Struct relay_cabi::RelayKeyPair
source · #[repr(C)]pub struct RelayKeyPair {
pub public_key: *mut RelayPublicKey,
pub secret_key: *mut RelaySecretKey,
}
Expand description
Represents a key pair from key generation.
Fields§
§public_key: *mut RelayPublicKey
The public key used for verifying Relay signatures.
secret_key: *mut RelaySecretKey
The secret key used for signing Relay requests.
Auto Trait Implementations§
impl Freeze for RelayKeyPair
impl RefUnwindSafe for RelayKeyPair
impl !Send for RelayKeyPair
impl !Sync for RelayKeyPair
impl Unpin for RelayKeyPair
impl UnwindSafe for RelayKeyPair
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