pub struct VrfSecretKey(/* private fields */);Expand description
An opaque VRF secret key. The concrete byte encoding is defined by the
Vrf implementation. Treat the bytes as secret material.
Implementations§
Trait Implementations§
Source§impl Clone for VrfSecretKey
impl Clone for VrfSecretKey
Source§fn clone(&self) -> VrfSecretKey
fn clone(&self) -> VrfSecretKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VrfSecretKey
impl RefUnwindSafe for VrfSecretKey
impl Send for VrfSecretKey
impl Sync for VrfSecretKey
impl Unpin for VrfSecretKey
impl UnsafeUnpin for VrfSecretKey
impl UnwindSafe for VrfSecretKey
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