pub struct VrfOutput {
pub output_hex: String,
pub proof: VrfProof,
}Expand description
A VRF output: the deterministic pseudo-random value + proof.
Fields§
§output_hex: String§proof: VrfProofTrait Implementations§
Source§impl<'de> Deserialize<'de> for VrfOutput
impl<'de> Deserialize<'de> for VrfOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VrfOutput
impl RefUnwindSafe for VrfOutput
impl Send for VrfOutput
impl Sync for VrfOutput
impl Unpin for VrfOutput
impl UnsafeUnpin for VrfOutput
impl UnwindSafe for VrfOutput
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