Struct sp_core::sr25519::vrf::VrfSignData
source · pub struct VrfSignData { /* private fields */ }
Expand description
VRF input ready to be used for VRF sign and verify operations.
Implementations§
source§impl VrfSignData
impl VrfSignData
sourcepub fn new(input: VrfTranscript) -> Self
pub fn new(input: VrfTranscript) -> Self
Build a new instance ready to be used for VRF signer and verifier.
input
will contribute to the VRF output bytes.
sourcepub fn with_extra(self, extra: VrfTranscript) -> Self
pub fn with_extra(self, extra: VrfTranscript) -> Self
Add some extra data to be signed.
extra
will not contribute to the VRF output bytes.
Trait Implementations§
source§impl AsRef<VrfTranscript> for VrfSignData
impl AsRef<VrfTranscript> for VrfSignData
source§impl Clone for VrfSignData
impl Clone for VrfSignData
source§fn clone(&self) -> VrfSignData
fn clone(&self) -> VrfSignData
Returns a copy 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 moresource§impl From<VrfTranscript> for VrfSignData
impl From<VrfTranscript> for VrfSignData
Auto Trait Implementations§
impl Freeze for VrfSignData
impl RefUnwindSafe for VrfSignData
impl Send for VrfSignData
impl Sync for VrfSignData
impl Unpin for VrfSignData
impl UnwindSafe for VrfSignData
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.