pub struct FhePublicKey {
pub data: Vec<u8>,
pub id: [u8; 32],
pub created_at: u64,
}Expand description
FHE public key
Fields§
§data: Vec<u8>Key data (simulated)
id: [u8; 32]Key ID
created_at: u64Creation timestamp
Trait Implementations§
Source§impl Clone for FhePublicKey
impl Clone for FhePublicKey
Source§fn clone(&self) -> FhePublicKey
fn clone(&self) -> FhePublicKey
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 FhePublicKey
impl RefUnwindSafe for FhePublicKey
impl Send for FhePublicKey
impl Sync for FhePublicKey
impl Unpin for FhePublicKey
impl UnwindSafe for FhePublicKey
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