pub struct SP1ProverOpts {
pub core_opts: SP1CoreOpts,
pub recursion_opts: SP1CoreOpts,
}
Expand description
Options to configure the SP1 prover for core and recursive proofs.
Fields§
§core_opts: SP1CoreOpts
Options for the core prover.
recursion_opts: SP1CoreOpts
Options for the recursion prover.
Trait Implementations§
source§impl Clone for SP1ProverOpts
impl Clone for SP1ProverOpts
source§fn clone(&self) -> SP1ProverOpts
fn clone(&self) -> SP1ProverOpts
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 SP1ProverOpts
impl Debug for SP1ProverOpts
source§impl Default for SP1ProverOpts
impl Default for SP1ProverOpts
source§impl<'de> Deserialize<'de> for SP1ProverOpts
impl<'de> Deserialize<'de> for SP1ProverOpts
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 PartialEq for SP1ProverOpts
impl PartialEq for SP1ProverOpts
source§impl Serialize for SP1ProverOpts
impl Serialize for SP1ProverOpts
impl Copy for SP1ProverOpts
impl Eq for SP1ProverOpts
impl StructuralPartialEq for SP1ProverOpts
Auto Trait Implementations§
impl Freeze for SP1ProverOpts
impl RefUnwindSafe for SP1ProverOpts
impl Send for SP1ProverOpts
impl Sync for SP1ProverOpts
impl Unpin for SP1ProverOpts
impl UnwindSafe for SP1ProverOpts
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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 more