pub struct TraceVData<SC: StarkProtocolConfig> {
pub log_height: usize,
pub cached_commitments: Vec<SC::Digest>,
}Fields§
§log_height: usizeThe base 2 logarithm of the trace height. This should be a nonnegative integer and is
allowed to be < l_skip.
If the corresponding AIR has a preprocessed trace, this must match the value in the vkey.
cached_commitments: Vec<SC::Digest>The cached commitments used.
The length must match the value in the vkey.
Trait Implementations§
Source§impl<SC: StarkProtocolConfig> Clone for TraceVData<SC>
impl<SC: StarkProtocolConfig> Clone for TraceVData<SC>
Source§impl<SC: StarkProtocolConfig> Debug for TraceVData<SC>
impl<SC: StarkProtocolConfig> Debug for TraceVData<SC>
Source§impl<SC: DecodableConfig> Decode for TraceVData<SC>
impl<SC: DecodableConfig> Decode for TraceVData<SC>
Source§impl<SC: StarkProtocolConfig> Default for TraceVData<SC>
impl<SC: StarkProtocolConfig> Default for TraceVData<SC>
Source§impl<'de, SC: StarkProtocolConfig> Deserialize<'de> for TraceVData<SC>
impl<'de, SC: StarkProtocolConfig> Deserialize<'de> for TraceVData<SC>
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
Source§impl<SC: EncodableConfig> Encode for TraceVData<SC>
impl<SC: EncodableConfig> Encode for TraceVData<SC>
impl<SC: StarkProtocolConfig> Eq for TraceVData<SC>
Source§impl<SC: StarkProtocolConfig> PartialEq for TraceVData<SC>
impl<SC: StarkProtocolConfig> PartialEq for TraceVData<SC>
Source§impl<SC: StarkProtocolConfig> Serialize for TraceVData<SC>
impl<SC: StarkProtocolConfig> Serialize for TraceVData<SC>
Auto Trait Implementations§
impl<SC> Freeze for TraceVData<SC>
impl<SC> RefUnwindSafe for TraceVData<SC>
impl<SC> Send for TraceVData<SC>
impl<SC> Sync for TraceVData<SC>
impl<SC> Unpin for TraceVData<SC>
impl<SC> UnsafeUnpin for TraceVData<SC>
impl<SC> UnwindSafe for TraceVData<SC>
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more