pub struct TaskSignature { /* private fields */ }Expand description
Contains the information of a signed task response
Implementations§
Source§impl TaskSignature
impl TaskSignature
Sourcepub fn new(
task_index: TaskIndex,
task_response_digest: TaskResponseDigest,
bls_signature: Signature,
operator_id: FixedBytes<32>,
) -> Self
pub fn new( task_index: TaskIndex, task_response_digest: TaskResponseDigest, bls_signature: Signature, operator_id: FixedBytes<32>, ) -> Self
Creates a new instance of `TaskSignature``
§Arguments
task_index- index of the tasktask_response_digest- digest of the task responsebls_signature- bls signature of the task responseoperator_id- operator ID of the operator that signed the task response
§Returns
TaskSignature instance
Trait Implementations§
Source§impl Clone for TaskSignature
impl Clone for TaskSignature
Source§fn clone(&self) -> TaskSignature
fn clone(&self) -> TaskSignature
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 TaskSignature
impl RefUnwindSafe for TaskSignature
impl Send for TaskSignature
impl Sync for TaskSignature
impl Unpin for TaskSignature
impl UnsafeUnpin for TaskSignature
impl UnwindSafe for TaskSignature
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreCreates a shared type from an unshared type.