Struct sp_core::sr25519::vrf::VrfTranscript
source · pub struct VrfTranscript(pub Transcript);
Expand description
Transcript ready to be used for VRF related operations.
Tuple Fields§
§0: Transcript
Implementations§
source§impl VrfTranscript
impl VrfTranscript
sourcepub fn new(label: &'static [u8], data: &[(&'static [u8], &[u8])]) -> Self
pub fn new(label: &'static [u8], data: &[(&'static [u8], &[u8])]) -> Self
Build a new transcript instance.
Each data
element is a tuple (domain, message)
used to build the transcript.
sourcepub fn into_sign_data(self) -> VrfSignData
pub fn into_sign_data(self) -> VrfSignData
Map transcript to VrfSignData
.
Trait Implementations§
source§impl AsRef<VrfTranscript> for VrfSignData
impl AsRef<VrfTranscript> for VrfSignData
source§impl Clone for VrfTranscript
impl Clone for VrfTranscript
source§fn clone(&self) -> VrfTranscript
fn clone(&self) -> VrfTranscript
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 VrfTranscript
impl RefUnwindSafe for VrfTranscript
impl Send for VrfTranscript
impl Sync for VrfTranscript
impl Unpin for VrfTranscript
impl UnwindSafe for VrfTranscript
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
.