#[repr(usize)]pub enum HashAuxColumn {
Show 20 variants
ReceiveChunkRunningEvaluation = 0,
HashInputRunningEvaluation = 1,
HashDigestRunningEvaluation = 2,
SpongeRunningEvaluation = 3,
CascadeState0HighestClientLogDerivative = 4,
CascadeState0MidHighClientLogDerivative = 5,
CascadeState0MidLowClientLogDerivative = 6,
CascadeState0LowestClientLogDerivative = 7,
CascadeState1HighestClientLogDerivative = 8,
CascadeState1MidHighClientLogDerivative = 9,
CascadeState1MidLowClientLogDerivative = 10,
CascadeState1LowestClientLogDerivative = 11,
CascadeState2HighestClientLogDerivative = 12,
CascadeState2MidHighClientLogDerivative = 13,
CascadeState2MidLowClientLogDerivative = 14,
CascadeState2LowestClientLogDerivative = 15,
CascadeState3HighestClientLogDerivative = 16,
CascadeState3MidHighClientLogDerivative = 17,
CascadeState3MidLowClientLogDerivative = 18,
CascadeState3LowestClientLogDerivative = 19,
}
Variants§
ReceiveChunkRunningEvaluation = 0
The evaluation argument corresponding to receiving instructions in chunks of size
RATE
. The chunks are hashed in Sponge mode.
This allows program attestation.
The counterpart to SendChunkEvalArg
.
HashInputRunningEvaluation = 1
HashDigestRunningEvaluation = 2
SpongeRunningEvaluation = 3
CascadeState0HighestClientLogDerivative = 4
CascadeState0MidHighClientLogDerivative = 5
CascadeState0MidLowClientLogDerivative = 6
CascadeState0LowestClientLogDerivative = 7
CascadeState1HighestClientLogDerivative = 8
CascadeState1MidHighClientLogDerivative = 9
CascadeState1MidLowClientLogDerivative = 10
CascadeState1LowestClientLogDerivative = 11
CascadeState2HighestClientLogDerivative = 12
CascadeState2MidHighClientLogDerivative = 13
CascadeState2MidLowClientLogDerivative = 14
CascadeState2LowestClientLogDerivative = 15
CascadeState3HighestClientLogDerivative = 16
CascadeState3MidHighClientLogDerivative = 17
CascadeState3MidLowClientLogDerivative = 18
CascadeState3LowestClientLogDerivative = 19
Trait Implementations§
Source§impl Clone for HashAuxColumn
impl Clone for HashAuxColumn
Source§fn clone(&self) -> HashAuxColumn
fn clone(&self) -> HashAuxColumn
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 Debug for HashAuxColumn
impl Debug for HashAuxColumn
Source§impl Display for HashAuxColumn
impl Display for HashAuxColumn
Source§impl Hash for HashAuxColumn
impl Hash for HashAuxColumn
Source§impl IntoEnumIterator for HashAuxColumn
impl IntoEnumIterator for HashAuxColumn
type Iterator = HashAuxColumnIter
fn iter() -> HashAuxColumnIter ⓘ
Source§impl MasterAuxColumn for HashAuxColumn
impl MasterAuxColumn for HashAuxColumn
Source§impl PartialEq for HashAuxColumn
impl PartialEq for HashAuxColumn
impl Copy for HashAuxColumn
impl Eq for HashAuxColumn
impl StructuralPartialEq for HashAuxColumn
Auto Trait Implementations§
impl Freeze for HashAuxColumn
impl RefUnwindSafe for HashAuxColumn
impl Send for HashAuxColumn
impl Sync for HashAuxColumn
impl Unpin for HashAuxColumn
impl UnwindSafe for HashAuxColumn
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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 more