Struct dsnp_graph_sdk_ffi::GraphKeyPair
source · #[repr(C)]pub struct GraphKeyPair {
pub key_type: GraphKeyType,
pub public_key: *const u8,
pub public_key_len: size_t,
pub secret_key: *const u8,
pub secret_key_len: size_t,
}Expand description
dsnp_graph_core::dsnp::api_types::GraphKeyPair type
Fields§
§key_type: GraphKeyTypekey pair type
public_key: *const u8public key raw
public_key_len: size_tlength of the public key
secret_key: *const u8secret key raw
secret_key_len: size_tlength of the secret key
Auto Trait Implementations§
impl RefUnwindSafe for GraphKeyPair
impl !Send for GraphKeyPair
impl !Sync for GraphKeyPair
impl Unpin for GraphKeyPair
impl UnwindSafe for GraphKeyPair
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