pub struct FStarOptions<E: Extension> {
pub z3rlimit: u32,
pub fuel: u32,
pub ifuel: u32,
pub interfaces: Vec<InclusionClause>,
pub line_width: u16,
pub cli_extension: E::FStarOptions,
}
Fields§
§z3rlimit: u32
Set the Z3 per-query resource limit
fuel: u32
Number of unrolling of recursive functions to try
ifuel: u32
Number of unrolling of inductive datatypes to try
interfaces: Vec<InclusionClause>
Modules for which Hax should extract interfaces (*.fsti
files) in supplement to implementations (*.fst
files). By
default we extract no interface, only implementations. If a
item is signature only (see the +:
prefix of the
--include_namespaces
flag of the into
subcommand), then
its namespace is extracted with an interface. This flag
expects a space-separated list of inclusion clauses. An
inclusion clause is a Rust path prefixed with +
, +!
or
-
. -
means implementation only, +!
means interface only
and +
means implementation and interface. Rust path chunks
can be either a concrete string, or a glob (just like bash
globs, but with Rust paths).
line_width: u16
§cli_extension: E::FStarOptions
Trait Implementations§
source§impl<E: Extension> Args for FStarOptions<E>
impl<E: Extension> Args for FStarOptions<E>
source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command
so it can instantiate self
via
FromArgMatches::update_from_arg_matches_mut
Read moresource§impl<E: Clone + Extension> Clone for FStarOptions<E>where
E::FStarOptions: Clone,
impl<E: Clone + Extension> Clone for FStarOptions<E>where
E::FStarOptions: Clone,
source§fn clone(&self) -> FStarOptions<E>
fn clone(&self) -> FStarOptions<E>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<E: Extension> CommandFactory for FStarOptions<E>
impl<E: Extension> CommandFactory for FStarOptions<E>
source§impl<E: Debug + Extension> Debug for FStarOptions<E>where
E::FStarOptions: Debug,
impl<E: Debug + Extension> Debug for FStarOptions<E>where
E::FStarOptions: Debug,
source§impl<'de, E: Extension> Deserialize<'de> for FStarOptions<E>where
E::FStarOptions: Deserialize<'de>,
impl<'de, E: Extension> Deserialize<'de> for FStarOptions<E>where
E::FStarOptions: Deserialize<'de>,
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>,
source§impl<E: Extension> FromArgMatches for FStarOptions<E>
impl<E: Extension> FromArgMatches for FStarOptions<E>
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches
to self
.source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches
to self
.source§impl<E: Extension + JsonSchema> JsonSchema for FStarOptions<E>
impl<E: Extension + JsonSchema> JsonSchema for FStarOptions<E>
source§fn schema_name() -> String
fn schema_name() -> String
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moresource§impl<E: Extension> Parser for FStarOptions<E>
impl<E: Extension> Parser for FStarOptions<E>
source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
source§impl<E: Extension> Serialize for FStarOptions<E>where
E::FStarOptions: Serialize,
impl<E: Extension> Serialize for FStarOptions<E>where
E::FStarOptions: Serialize,
Auto Trait Implementations§
impl<E> Freeze for FStarOptions<E>
impl<E> RefUnwindSafe for FStarOptions<E>
impl<E> Send for FStarOptions<E>
impl<E> Sync for FStarOptions<E>
impl<E> Unpin for FStarOptions<E>
impl<E> UnwindSafe for FStarOptions<E>
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
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)
clone_to_uninit
)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>
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>
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