Hax_engine.Types
include sig ... end
module ParseError : sig ... end
and adt_expr = {
base : fru_info option;
fields : field_expr list;
info : variant_informations;
user_ty : canonical_for__user_type option;
}
and alias_kind =
| Projection of {
assoc_item : assoc_item;
impl_expr : impl_expr;
}
The projection of a trait type: `<Ty as Trait<...>>::Type<...>`
*)| Inherent
An associated type in an inherent impl.
*)| Opaque of {
}
An `impl Trait` opaque type.
*)| Weak
A type alias that references opaque types. Likely to always be normalized away.
*)and anon_const_for__decorated_for__expr_kind = {
body : decorated_for__expr_kind;
def_id : def_id;
hir_id : hir_id;
}
and arm = {
attributes : attribute list;
body : decorated_for__expr_kind;
guard : decorated_for__expr_kind option;
lint_level : lint_level;
pattern : decorated_for__pat_kind;
scope : scope;
span : span;
}
and assoc_item = {
container : assoc_item_container;
def_id : def_id;
fn_has_self_parameter : bool;
has_value : bool;
Whether this item has a value (e.g. this is `false` for trait methods without default implementations).
*)kind : assoc_kind;
name : string;
opt_rpitit_info : impl_trait_in_trait_data option;
}
and backend_options_for__null = {
backend : backend_for__null;
cli_extension : empty_args_extension;
debug_engine : debug_engine_mode option;
Enable engine debugging: dumps the AST at each phase.
The value of `<DEBUG_ENGINE>` can be either: n
n
- `interactive` (or `i`): enables debugging of the engine, and visualize interactively in a webapp how a crate was transformed by each phase, both in Rust-like syntax and browsing directly the internal AST. By default, the webapp is hosted on `http://localhost:8000`, the port can be override by setting the `HAX_DEBUGGER_PORT` environment variable. n
- `<FILE>` or `file:<FILE>`: outputs the different AST as JSON to `<FILE>`. `<FILE>` can be either -
or a path.
dry_run : bool;
Don't write anything on disk. Output everything as JSON to stdout instead.
*)extract_type_aliases : bool;
Extract type aliases. This is disabled by default, since extracted terms depends on expanded types rather than on type aliases. Turning this option on is discouraged: Rust type synonyms can ommit generic bounds, which are ususally necessary in the hax backends, leading to typechecking errors. For more details see https://github.com/hacspec/hax/issues/708.
*)output_dir : string option;
profile : bool;
Enables profiling for the engine: for each phase of the engine, time and memory usage are recorded and reported.
*)stats : bool;
Prints statistics about how many items have been translated successfully by the engine.
*)translation_options : translation_options;
verbose : int;
Verbose mode for the Hax engine. Set `-vv` for maximal verbosity.
*)}
and backend_for__null =
| Fstar of f_star_options_for__null
Use the F* backend
*)| Coq
Use the Coq backend
*)| Ssprove
Use the SSProve backend
*)| Easycrypt
Use the EasyCrypt backend (warning: work in progress!)
*)| ProVerif of pro_verif_options
Use the ProVerif backend (warning: work in progress!)
*)and binder_for__existential_predicate = {
bound_vars : bound_variable_kind list;
value : existential_predicate;
}
and block = {
expr : decorated_for__expr_kind option;
region_scope : scope;
safety_mode : block_safety;
span : span;
stmts : stmt list;
targeted_by_break : bool;
}
and canonical_user_type_annotation = {
inferred_ty : node_for__ty_kind;
span : span;
user_ty : canonical_for__user_type;
}
and canonical_var_info =
| Effect
| Ty of canonical_ty_var_kind
| PlaceholderTy of placeholder_for__bound_ty
| Region of string
| PlaceholderRegion of placeholder_for__bound_region
| Const of string
| PlaceholderConst of placeholder_for_uint
and canonical_for__user_type = {
max_universe : string;
value : user_type;
variables : canonical_var_info list;
}
and clause_kind =
| Trait of trait_predicate
| RegionOutlives of outlives_predicate_for__region
| TypeOutlives of outlives_predicate_for__node_for__ty_kind
| Projection of projection_predicate
| ConstArgHasType of decorated_for__constant_expr_kind * node_for__ty_kind
| WellFormed of generic_arg
| ConstEvaluatable of decorated_for__constant_expr_kind
and closure_args = {
kind : closure_kind;
The base kind of this closure. The kinds are ordered by inclusion: any `Fn` works as an `FnMut`, and any `FnMut` works as an `FnOnce`.
*)parent_args : generic_arg list;
The arguments to the parent (i.e., the item which defines the closure).
*)parent_trait_refs : impl_expr list;
The solved predicates from the parent (i.e., the item which defines the closure).
*)tupled_sig : binder_for__ty_fn_sig;
The signature of the closure as one input and one output, where the input arguments are tupled. This is relevant to implementing the `Fn*` traits.
*)untupled_sig : binder_for__ty_fn_sig;
The proper `fn(A, B, C) -> D` signature of the closure.
*)upvar_tys : node_for__ty_kind list;
The set of captured variables. Together they form the state of the closure.
*)}
and command_for__null =
| Backend of backend_options_for__null
Translate to a backend. The translated modules will be written under the directory `<PKG>/proofs/<BACKEND>/extraction`, where `<PKG>` is the translated cargo package name and `<BACKEND>` the name of the backend.
*)| JSON of {
include_extra : bool;
kind : export_body_kind list;
output_file : path_or_dash;
use_ids : bool;
}
Export directly as a JSON file
*)| CliExtension of empty_subcommand_extension
and const_arg_kind_for__decorated_for__expr_kind =
| Path of q_path
| Anon of anon_const_for__decorated_for__expr_kind
and const_arg_for__decorated_for__expr_kind = {
hir_id : hir_id;
is_desugared_from_effects : bool;
kind : const_arg_kind_for__decorated_for__expr_kind;
}
and constant_expr_kind =
| Literal of constant_literal
| Adt of {
fields : constant_field_expr list;
info : variant_informations;
}
| Array of {
fields : decorated_for__constant_expr_kind list;
}
| Tuple of {
fields : decorated_for__constant_expr_kind list;
}
| GlobalName of {
generics : generic_arg list;
id : def_id;
trait_refs : impl_expr list;
variant_information : variant_informations option;
}
A top-level constant or a constant appearing in an impl block.
Remark: constants *can* have generic parameters. Example: ```text struct V<const N: usize, T> x: [T; N],
impl<const N: usize, T> V<N, T> const LEN: usize = N; // This has generics <N, T>
```
| TraitConst of {
impl_expr : impl_expr;
name : string;
}
A trait constant
Ex.: ```text impl Foo for Bar const C : usize = 32; // <-
```
| Borrow of decorated_for__constant_expr_kind
A shared reference to a static variable.
*)| RawBorrow of {
arg : decorated_for__constant_expr_kind;
mutability : bool;
}
A raw borrow (`*const` or `*mut`).
*)| Cast of {
source : decorated_for__constant_expr_kind;
}
A cast `<source> as <type>`, `<type>` is stored as the type of the current constant expression. Currently, this is only used to represent `lit as *mut T` or `lit as *const T`, where `lit` is a `usize` literal.
*)| ConstRef of {
id : param_const;
}
| FnPtr of {
def_id : def_id;
generics : generic_arg list;
generics_impls : impl_expr list;
method_impl : impl_expr option;
}
| Todo of string
and constant_literal =
| Bool of bool
| Char of char
| Float of string * float_ty
| Int of constant_int
| Str of string * str_style
| ByteStr of int list * str_style
and decorated_for__constant_expr_kind = {
attributes : attribute list;
contents : constant_expr_kind;
hir_id : (string * string) option;
span : span;
ty : node_for__ty_kind;
}
and decorated_for__expr_kind = {
attributes : attribute list;
contents : expr_kind;
hir_id : (string * string) option;
span : span;
ty : node_for__ty_kind;
}
and decorated_for__pat_kind = {
attributes : attribute list;
contents : pat_kind;
hir_id : (string * string) option;
span : span;
ty : node_for__ty_kind;
}
and def_id_contents = {
index : Base.Int64.t * Base.Int64.t;
Rustc's `CrateNum` and `DefIndex` raw indexes. This can be useful if one needs to convert a `DefId`
into a `rustc_hir::def_id::DefId`
; there is a `From` instance for that purpose.
**Warning: this `index` field might not be safe to use**. They are valid only for one Rustc sesssion. Please do not rely on those indexes unless you cannot do otherwise.
*)is_local : bool;
kind : def_kind;
The kind of definition this `DefId` points to.
*)krate : string;
parent : def_id option;
path : disambiguated_def_path_item list;
}
and def_kind =
| Mod
| Struct
| Union
| Enum
| Variant
| Trait
| TyAlias
| ForeignTy
| TraitAlias
| AssocTy
| TyParam
| Fn
| Const
| ConstParam
| AssocFn
| AssocConst
| ExternCrate
| Use
| ForeignMod
| AnonConst
| InlineConst
| OpaqueTy
| Field
| LifetimeParam
| GlobalAsm
| Closure
| SyntheticCoroutineBody
| Static of {
mutability : bool;
nested : bool;
safety : safety;
}
| Ctor of ctor_of * ctor_kind
| Macro of macro_kind
| Impl of {
}
and engine_options = {
backend : backend_options_for__null;
hax_version : string;
impl_infos : (def_id * impl_infos) list;
input : item_for__decorated_for__expr_kind list;
}
and existential_predicate =
| Trait of existential_trait_ref
E.g. `From<u64>`. Note that this isn't `T: From<u64>` with a given `T`, this is just `From<u64>`. Could be written `?: From<u64>`.
*)| Projection of existential_projection
E.g. `Iterator::Item = u64`. Could be written `<? as Iterator>::Item = u64`.
*)| AutoTrait of def_id
E.g. `Send`.
*)and expn_kind =
| Root
| Macro of macro_kind * string
| AstPass of ast_pass
| Desugaring of desugaring_kind
and expr_kind =
| Box of {
value : decorated_for__expr_kind;
}
| MacroInvokation of macro_invokation
| If of {
cond : decorated_for__expr_kind;
else_opt : decorated_for__expr_kind option;
if_then_scope : scope;
then' : decorated_for__expr_kind;
}
Resugared macros calls. This is deprecated: see <https://github.com/hacspec/hax/issues/145>.
*)| Call of {
args : decorated_for__expr_kind list;
bounds_impls : impl_expr list;
fn_span : span;
from_hir_call : bool;
fun' : decorated_for__expr_kind;
generic_args : generic_arg list;
trait : (impl_expr * generic_arg list) option;
ty : node_for__ty_kind;
}
A call to a function or a method.
Example: `f(0i8)`, where `f` has signature `fn f<T: Clone>(t: T) -> ()`.
*)| Deref of {
arg : decorated_for__expr_kind;
}
| Binary of {
lhs : decorated_for__expr_kind;
op : bin_op;
rhs : decorated_for__expr_kind;
}
| LogicalOp of {
lhs : decorated_for__expr_kind;
op : logical_op;
rhs : decorated_for__expr_kind;
}
| Unary of {
arg : decorated_for__expr_kind;
op : un_op;
}
| Cast of {
source : decorated_for__expr_kind;
}
| Use of {
source : decorated_for__expr_kind;
}
| NeverToAny of {
source : decorated_for__expr_kind;
}
| PointerCoercion of {
cast : pointer_coercion;
source : decorated_for__expr_kind;
}
| Loop of {
body : decorated_for__expr_kind;
}
| Match of {
arms : arm list;
scrutinee : decorated_for__expr_kind;
}
| Let of {
expr : decorated_for__expr_kind;
pat : decorated_for__pat_kind;
}
| Block of {
expr : decorated_for__expr_kind option;
region_scope : scope;
safety_mode : block_safety;
span : span;
stmts : stmt list;
targeted_by_break : bool;
}
| Assign of {
lhs : decorated_for__expr_kind;
rhs : decorated_for__expr_kind;
}
| AssignOp of {
lhs : decorated_for__expr_kind;
op : bin_op;
rhs : decorated_for__expr_kind;
}
| Field of {
field : def_id;
lhs : decorated_for__expr_kind;
}
| TupleField of {
field : string;
lhs : decorated_for__expr_kind;
}
| Index of {
index : decorated_for__expr_kind;
lhs : decorated_for__expr_kind;
}
| VarRef of {
id : local_ident;
}
| ConstRef of {
id : param_const;
}
| GlobalName of {
constructor : variant_informations option;
id : def_id;
}
| UpvarRef of {
closure_def_id : def_id;
var_hir_id : local_ident;
}
| Borrow of {
arg : decorated_for__expr_kind;
borrow_kind : borrow_kind;
}
| RawBorrow of {
arg : decorated_for__expr_kind;
mutability : bool;
}
| Break of {
label : scope;
value : decorated_for__expr_kind option;
}
| Continue of {
label : scope;
}
| Return of {
value : decorated_for__expr_kind option;
}
| ConstBlock of {
args : generic_arg list;
did : def_id;
}
| Repeat of {
count : decorated_for__constant_expr_kind;
value : decorated_for__expr_kind;
}
| Array of {
fields : decorated_for__expr_kind list;
}
| Tuple of {
fields : decorated_for__expr_kind list;
}
| Adt of adt_expr
| PlaceTypeAscription of {
source : decorated_for__expr_kind;
user_ty : canonical_for__user_type option;
}
| ValueTypeAscription of {
source : decorated_for__expr_kind;
user_ty : canonical_for__user_type option;
}
| Closure of {
body : decorated_for__expr_kind;
movability : movability option;
params : param list;
upvars : decorated_for__expr_kind list;
}
| Literal of {
lit : spanned_for__lit_kind;
neg : bool;
}
| ZstLiteral of {
user_ty : canonical_for__user_type option;
}
| NamedConst of {
args : generic_arg list;
def_id : def_id;
impl : impl_expr option;
user_ty : canonical_for__user_type option;
}
| ConstParam of {
def_id : def_id;
param : param_const;
}
| StaticRef of {
alloc_id : string;
def_id : def_id;
ty : node_for__ty_kind;
}
| Yield of {
value : decorated_for__expr_kind;
}
| Todo of string
and extensible_options_for__null = {
cargo_flags : string list;
Semi-colon terminated list of arguments to pass to the `cargo build` invocation. For example, to apply this program on a package `foo`, use `-C -p foo ;`. (make sure to escape `;` correctly in your shell)
*)command : command_for__null;
deps : bool;
Apply the command to every local package of the dependency closure. By default, the command is only applied to the primary packages (i.e. the package(s) of the current directory, or the ones selected with cargo options like `-C -p <PKG> ;`).
*)extension : empty_args_extension;
force_cargo_build : force_cargo_build;
`cargo` caching is enable by default, this flag disables it.
*)inline_macro_calls : namespace list;
Replace the expansion of each macro matching PATTERN by their invocation. PATTERN denotes a rust path (i.e. `A::B::c`) in which glob patterns are allowed. The glob pattern * matches any name, the glob pattern ** matches zero, one or more names. For instance, `A::B::C::D::X` and `A::E::F::D::Y` matches `A::**::D::*`.
*)message_format : message_format;
Diagnostic format. Sets `cargo`'s `--message-format` as well, if not present.
*)no_custom_target_directory : bool;
By default, hax uses `$CARGO_TARGET_DIR/hax` as target folder, to avoid recompilation when working both with `cargo hax` and `cargo build` (or, e.g. `rust-analyzer`). This option disables this behavior.
*)}
and f_star_options_for__null = {
cli_extension : empty_args_extension;
fuel : Base.Int64.t;
Number of unrolling of recursive functions to try
*)ifuel : Base.Int64.t;
Number of unrolling of inductive datatypes to try
*)interfaces : inclusion_clause list;
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 : int;
z3rlimit : Base.Int64.t;
Set the Z3 per-query resource limit
*)}
and fake_borrow_kind =
| Deep
A shared (deep) borrow. Data must be immutable and is aliasable.
*)| Shallow
The immediately borrowed place must be immutable, but projections from it don't need to be. This is used to prevent match guards from replacing the scrutinee. For example, a fake borrow of `a.b` doesn't conflict with a mutable borrow of `a.b.c`.
*)and file_name =
| Real of real_file_name
| QuoteExpansion of string
| Anon of string
| MacroExpansion of string
| ProcMacroSourceCode of string
| CliCrateAttr of string
| Custom of string
| DocTest of string
| InlineAsm of string
and fn_decl = {
c_variadic : bool;
implicit_self : implicit_self_kind;
inputs : node_for__ty_kind list;
lifetime_elision_allowed : bool;
output : fn_ret_ty;
}
and fn_def_for__decorated_for__expr_kind = {
body : decorated_for__expr_kind;
header : fn_header;
params : param list;
ret : node_for__ty_kind;
sig_span : span;
}
and foreign_item_kind_for__decorated_for__expr_kind =
| Type
| Fn of fn_sig * (string * span) list * generics_for__decorated_for__expr_kind
| Static of node_for__ty_kind * bool * safety
and foreign_item_for__decorated_for__expr_kind = {
ident : string * span;
kind : foreign_item_kind_for__decorated_for__expr_kind;
owner_id : def_id;
span : span;
vis_span : span;
}
and from_engine =
| Exit
| Ping
| Diagnostic of diagnostics
| File of file
| PrettyPrintDiagnostic of diagnostics
| PrettyPrintRust of string
| DebugString of string
| ProfilingData of profiling_data
| ItemProcessed of def_id list
Declares a list of items that will be processed by the engine
*)and fru_info = {
base : decorated_for__expr_kind;
The base, e.g. `Foo x: 1, .. base
`
field_types : node_for__ty_kind list;
}
and generic_arg =
| Lifetime of region
| Type of node_for__ty_kind
| Const of decorated_for__constant_expr_kind
and generic_param_def = {
def_id : def_id;
index : Base.Int64.t;
kind : generic_param_def_kind;
name : string;
pure_wrt_drop : bool;
}
and generic_param_def_kind =
| Lifetime
| Type of {
}
| Const of {
has_default : bool;
is_host_effect : bool;
ty : node_for__ty_kind;
}
and generic_param_kind_for__decorated_for__expr_kind =
| Lifetime of {
kind : lifetime_param_kind;
}
| Type of {
}
| Const of {
default : const_arg_for__decorated_for__expr_kind option;
ty : node_for__ty_kind;
}
and generic_param_for__decorated_for__expr_kind = {
attributes : attribute list;
colon_span : span option;
def_id : def_id;
hir_id : hir_id;
kind : generic_param_kind_for__decorated_for__expr_kind;
name : param_name;
pure_wrt_drop : bool;
span : span;
}
and generics_for__decorated_for__expr_kind = {
bounds : clause list;
has_where_clause_predicates : bool;
params : generic_param_for__decorated_for__expr_kind list;
span : span;
where_clause_span : span;
}
and ha_item_quote = {
fstar_options : ha_item_quote_f_star_opts option;
position : ha_item_quote_position;
}
and ha_payload =
| NewtypeAsRefinement
| Language
| ProcessRead
| ProcessWrite
| ProcessInit
| ProtocolMessages
| PVConstructor
| PVHandwritten
| TraitMethodNoPrePost
| ItemStatus of ha_item_status
| AssociatedItem of {
item : ha_uid;
role : ha_assoc_role;
}
Mark an item as associated with another one
*)| Uid of ha_uid
| ItemQuote of ha_item_quote
Decides of the position of a item quote
*)| NeverErased
Mark an item so that hax never drop its body (this is useful for pre- and post- conditions of a function we dropped the body of: pre and post are part of type signature)
*)| Lemma
Mark an item as a lemma statement to prove in the backend
*)| Erased
Make an item opaque
*)and impl_expr = {
args : impl_expr list;
A list of `ImplExpr`s required to fully specify the trait references in `impl`.
*)impl : impl_expr_atom;
The kind of implemention of the root of the tree.
*)trait : binder_for__trait_ref;
The trait this is an impl for.
*)}
and impl_expr_atom =
| Concrete of {
generics : generic_arg list;
id : def_id;
}
A concrete `impl Trait for Type {
}
` item.
*)| LocalBound of {
index : string;
path : impl_expr_path_chunk list;
predicate_id : string;
trait : binder_for__trait_ref;
}
A context-bound clause like `where T: Trait`.
*)| SelfImpl of {
path : impl_expr_path_chunk list;
trait : binder_for__trait_ref;
}
The implicit `Self: Trait` clause present inside a `trait Trait {
}
` item.
*)| Dyn
`dyn Trait` is a wrapped value with a virtual table for trait `Trait`. In other words, a value `dyn Trait` is a dependent triple that gathers a type τ, a value of type τ and an instance of type `Trait`. `dyn Trait` implements `Trait` using a built-in implementation; this refers to that built-in implementation.
*)| Builtin of {
trait : binder_for__trait_ref;
}
A built-in trait whose implementation is computed by the compiler, such as `Sync`.
*)| Error of string
An error happened while resolving traits.
*)and impl_expr_path_chunk =
| AssocItem of {
generic_args : generic_arg list;
impl_exprs : impl_expr list;
index : string;
item : assoc_item;
predicate : binder_for__trait_predicate;
predicate_id : string;
}
| Parent of {
index : string;
predicate : binder_for__trait_predicate;
predicate_id : string;
}
and impl_infos = {
clauses : (clause * span) list;
generics : ty_generics;
trait_ref : trait_ref option;
typ : node_for__ty_kind;
}
and impl_item_kind_for__decorated_for__expr_kind =
| Const of node_for__ty_kind * decorated_for__expr_kind
| Fn of fn_def_for__decorated_for__expr_kind
| Type of {
parent_bounds : (clause * impl_expr * span) list;
ty : node_for__ty_kind;
}
An associated type with its parent bounds inlined.
*)and impl_item_for__decorated_for__expr_kind = {
attributes : item_attributes;
the attributes on this impl item
*)defaultness : defaultness;
generics : generics_for__decorated_for__expr_kind;
ident : string * span;
kind : impl_item_kind_for__decorated_for__expr_kind;
owner_id : def_id;
span : span;
vis_span : span;
}
and impl_for__decorated_for__expr_kind = {
defaultness : defaultness;
defaultness_span : span option;
generics : generics_for__decorated_for__expr_kind;
items : impl_item_for__decorated_for__expr_kind list;
of_trait : trait_ref option;
parent_bounds : (clause * impl_expr * span) list;
The clauses and impl expressions corresponding to the impl's trait (if not inherent) super bounds (if any).
*)polarity : impl_polarity;
safety : safety;
self_ty : node_for__ty_kind;
}
and inclusion_kind =
| SignatureOnly
| Excluded
| Included of deps_kind
`+query` include the items selected by `query`
*)and item_kind_for__decorated_for__expr_kind =
| MacroInvokation of macro_invokation
| ExternCrate of string option
| Use of use_path * use_kind
| Static of node_for__ty_kind * bool * decorated_for__expr_kind
| Const of node_for__ty_kind
* generics_for__decorated_for__expr_kind
* decorated_for__expr_kind
| Fn of generics_for__decorated_for__expr_kind
* fn_def_for__decorated_for__expr_kind
| Macro of macro_def * macro_kind
| Mod of item_for__decorated_for__expr_kind list
| ForeignMod of {
abi : abi;
items : foreign_item_for__decorated_for__expr_kind list;
}
| GlobalAsm of inline_asm
| TyAlias of node_for__ty_kind * generics_for__decorated_for__expr_kind
| Enum of variant_for__decorated_for__expr_kind list
* generics_for__decorated_for__expr_kind
* repr_options
| Struct of variant_data * generics_for__decorated_for__expr_kind
| Union of variant_data * generics_for__decorated_for__expr_kind
| Trait of is_auto
* safety
* generics_for__decorated_for__expr_kind
* clause list
* trait_item_for__decorated_for__expr_kind list
| TraitAlias of generics_for__decorated_for__expr_kind * clause list
| Impl of impl_for__decorated_for__expr_kind
and item_for__decorated_for__expr_kind = {
attributes : item_attributes;
def_id : def_id option;
expn_backtrace : expn_data list;
kind : item_kind_for__decorated_for__expr_kind;
owner_id : def_id;
span : span;
vis_span : span;
}
and kind =
| ExpectedMutRef
| UnsafeBlock
Unsafe code is not supported
*)| Unimplemented of {
}
A feature is not currently implemented, but
*)| AssertionFailure of {
}
Unknown error
*)| UnallowedMutRef
Unallowed mutable reference
*)| UnsupportedMacro of {
}
Unsupported macro invokation
*)| ErrorParsingMacroInvocation of {
}
Error parsing a macro invocation to a macro treated specifcially by a backend
*)| ClosureMutatesParentBindings of {
}
Mutation of bindings living outside a closure scope are not supported
*)| ArbitraryLHS
Assignation of an arbitrary left-hand side is not supported. `lhs = e` is fine only when `lhs` is a combination of local identifiers, field accessors and index accessors.
*)| ExplicitRejection of {
}
A phase explicitely rejected this chunk of code
*)| UnsupportedTupleSize of {
}
A backend doesn't support a tuple size
*)| NonTrivialAndMutFnInput
&mut inputs should be trivial patterns
*)| AttributeRejected of {
}
An hax attribute (from `hax-lib-macros`) was rejected
*)| FStarParseError of {
}
A snippet of F* code could not be parsed
*)and lit_kind =
| Str of string * str_style
| ByteStr of int list * str_style
| CStr of int list * str_style
| Byte of int
| Char of char
| Int of string * lit_int_type
| Float of string * lit_float_type
| Bool of bool
| Err of error_guaranteed
and param = {
attributes : attribute list;
attributes on this parameter
*)hir_id : hir_id option;
pat : decorated_for__pat_kind option;
self_kind : implicit_self_kind option;
ty : node_for__ty_kind;
ty_span : span option;
}
and pat_kind =
| Wild
| Never
| AscribeUserType of {
ascription : ascription;
subpattern : decorated_for__pat_kind;
}
| Binding of {
is_primary : bool;
mode : binding_mode;
subpattern : decorated_for__pat_kind option;
ty : node_for__ty_kind;
var : local_ident;
}
| Variant of {
args : generic_arg list;
info : variant_informations;
subpatterns : field_pat list;
}
| Tuple of {
subpatterns : decorated_for__pat_kind list;
}
| Deref of {
subpattern : decorated_for__pat_kind;
}
| DerefPattern of {
subpattern : decorated_for__pat_kind;
}
| Constant of {
value : decorated_for__constant_expr_kind;
}
| InlineConstant of {
def : def_id;
subpattern : decorated_for__pat_kind;
}
| Range of pat_range
| Slice of {
prefix : decorated_for__pat_kind list;
slice : decorated_for__pat_kind option;
suffix : decorated_for__pat_kind list;
}
| Array of {
prefix : decorated_for__pat_kind list;
slice : decorated_for__pat_kind option;
suffix : decorated_for__pat_kind list;
}
| Or of {
pats : decorated_for__pat_kind list;
}
| Error of error_guaranteed
and path_segment = {
args : hir_generic_args option;
hir_id : hir_id;
ident : string * span;
infer_args : bool;
res : res;
}
and pointer_coercion =
| ReifyFnPointer
| UnsafeFnPointer
| MutToConstPointer
| ArrayToPointer
| DynStar
| Unsize
| ClosureFnPointer of safety
and pro_verif_options = {
assume_items : inclusion_clause list;
Items for which hax should extract a default-valued process macro with a corresponding type signature. 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).
*)}
and profiling_data = {
context : string;
What context are we profiling?
*)errored : bool;
Did the action errored? This is important since a failed action might have exited very early, making the numbers unusable.
*)memory : string;
How much memory this took? This is using OCaml's `Gc.minor_words`, and is probably not very precise.
*)quantity : Base.Int64.t;
How many things were processed? (often, this is the number of items a phase processes)
*)time_ns : string;
How long this took?
*)}
and projection_predicate = {
assoc_item : assoc_item;
The `Type` in `Ty: Trait<..., Type = U>`.
*)impl_expr : impl_expr;
The `impl Trait for Ty` in `Ty: Trait<..., Type = U>`.
*)ty : node_for__ty_kind;
The type `U` in `Ty: Trait<..., Type = U>`.
*)}
and region_kind =
| ReStatic
| ReErased
| ReEarlyParam of early_param_region
| ReBound of string * bound_region
| ReLateParam of late_param_region
| ReVar of string
| RePlaceholder of placeholder_for__bound_region
| ReError of error_guaranteed
and repr_options = {
align : align option;
field_shuffle_seed : string;
flags : repr_flags;
int : integer_type option;
pack : align option;
typ : node_for__ty_kind;
}
and stmt_kind =
| Expr of {
expr : decorated_for__expr_kind;
scope : scope;
}
| Let of {
attributes : attribute list;
else_block : block option;
init_scope : scope;
initializer' : decorated_for__expr_kind option;
lint_level : lint_level;
pattern : decorated_for__pat_kind;
remainder_scope : scope;
}
and to_engine =
| Pong
| PrettyPrintedDiagnostic of string
| PrettyPrintedRust of result_of__string_or__string
and trait_item_kind_for__decorated_for__expr_kind =
| Const of node_for__ty_kind * decorated_for__expr_kind option
| RequiredFn of fn_sig * (string * span) list
Reflects a required `hir::TraitItemKind::Fn`
| ProvidedFn of fn_sig * fn_def_for__decorated_for__expr_kind
Reflects a provided `hir::TraitItemKind::Fn`
| Type of clause list * node_for__ty_kind option
and trait_item_for__decorated_for__expr_kind = {
attributes : item_attributes;
The attributes on this trait item
*)defaultness : defaultness;
generics : generics_for__decorated_for__expr_kind;
ident : string * span;
kind : trait_item_kind_for__decorated_for__expr_kind;
owner_id : def_id;
span : span;
}
and translation_options = {
include_namespaces : inclusion_clause list;
Controls which Rust item should be extracted or not.
This is a space-separated list of patterns prefixed with a modifier, read from the left to the right.
A pattern is a Rust path (say `mycrate::mymod::myfn`) where globs are allowed: `*` matches any name (e.g. `mycrate::mymod::myfn` is matched by `mycrate::*::myfn`), while `**` matches any subpath, empty included (e.g. `mycrate::mymod::myfn` is matched by `**::myfn`). By default, hax includes all items. Then, the patterns prefixed by modifiers are processed from left to right, excluding or including items. Each pattern selects a number of item. The modifiers are: n
n
- `+`: includes the selected items with their dependencies, transitively (e.g. if function `f` calls `g` which in turn calls `h`, then `+k::f` includes `f`, `g` and `h`) n
- `+~`: includes the selected items with their direct dependencies only (following the previous example, `+~k::f` would select `f` and `g`, but not `h`) n
- `+!`: includes the selected items, without their dependencies (`+!k::f` would only select `f`) n
- `+:`: only includes the type of the selected items (no dependencies). This includes full struct and enums, but only the type signature of functions and trait impls (except when they contain associated types), dropping their bodies.
}
and ty_fn_sig = {
abi : abi;
c_variadic : bool;
inputs : node_for__ty_kind list;
output : node_for__ty_kind;
safety : safety;
}
and ty_generics = {
has_late_bound_regions : span option;
has_self : bool;
params : generic_param_def list;
parent : def_id option;
parent_count : string;
}
and ty_kind =
| Bool
| Char
| Str
| Never
| Error
| Int of int_ty
| Uint of uint_ty
| Float of float_ty
| Arrow of binder_for__ty_fn_sig
Reflects `ty::TyKind::FnPtr`
and `ty::TyKind::FnDef`
| Closure of def_id * closure_args
| Adt of {
def_id : def_id;
generic_args : generic_arg list;
trait_refs : impl_expr list;
}
| Foreign of def_id
| Array of node_for__ty_kind * decorated_for__constant_expr_kind
| Slice of node_for__ty_kind
| RawPtr of node_for__ty_kind * bool
| Ref of region * node_for__ty_kind * bool
| Dynamic of binder_for__existential_predicate list * region * dyn_kind
| Coroutine of def_id * generic_arg list
| Tuple of node_for__ty_kind list
| Alias of alias
| Param of param_ty
| Bound of string * bound_ty
| Placeholder of placeholder_for__bound_ty
| Infer of infer_ty
| Todo of string
and variant_data =
| Struct of {
fields : hir_field_def list;
recovered : bool;
}
| Tuple of hir_field_def list * hir_id * def_id
| Unit of hir_id * def_id
and variant_informations = {
kind : variant_kind;
typ : def_id;
type_namespace : def_id;
variant : def_id;
}
and variant_for__decorated_for__expr_kind = {
attributes : attribute list;
data : variant_data;
def_id : def_id;
discr : discriminant_definition;
disr_expr : anon_const_for__decorated_for__expr_kind option;
hir_id : hir_id;
ident : string * span;
span : span;
}
and with_def_ids_for__decorated_for__expr_kind = {
comments : (span * string) list;
def_ids : def_id list;
impl_infos : (def_id * impl_infos) list;
items : item_for__decorated_for__expr_kind list;
}
and node_for__ty_kind = node_for_ty_kind_generated
and node_for__def_id_contents = node_for_def_id_contents_generated
val pp_abi :
Ppx_deriving_runtime.Format.formatter ->
abi ->
Ppx_deriving_runtime.unit
val show_abi : abi -> Ppx_deriving_runtime.string
val pp_adt_expr :
Ppx_deriving_runtime.Format.formatter ->
adt_expr ->
Ppx_deriving_runtime.unit
val show_adt_expr : adt_expr -> Ppx_deriving_runtime.string
val pp_alias :
Ppx_deriving_runtime.Format.formatter ->
alias ->
Ppx_deriving_runtime.unit
val show_alias : alias -> Ppx_deriving_runtime.string
val pp_alias_kind :
Ppx_deriving_runtime.Format.formatter ->
alias_kind ->
Ppx_deriving_runtime.unit
val show_alias_kind : alias_kind -> Ppx_deriving_runtime.string
val pp_align :
Ppx_deriving_runtime.Format.formatter ->
align ->
Ppx_deriving_runtime.unit
val show_align : align -> Ppx_deriving_runtime.string
val pp_anon_const_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
anon_const_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_anon_const_for__decorated_for__expr_kind :
anon_const_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_arm :
Ppx_deriving_runtime.Format.formatter ->
arm ->
Ppx_deriving_runtime.unit
val show_arm : arm -> Ppx_deriving_runtime.string
val pp_ascription :
Ppx_deriving_runtime.Format.formatter ->
ascription ->
Ppx_deriving_runtime.unit
val show_ascription : ascription -> Ppx_deriving_runtime.string
val pp_assoc_item :
Ppx_deriving_runtime.Format.formatter ->
assoc_item ->
Ppx_deriving_runtime.unit
val show_assoc_item : assoc_item -> Ppx_deriving_runtime.string
val pp_assoc_item_container :
Ppx_deriving_runtime.Format.formatter ->
assoc_item_container ->
Ppx_deriving_runtime.unit
val show_assoc_item_container :
assoc_item_container ->
Ppx_deriving_runtime.string
val pp_assoc_kind :
Ppx_deriving_runtime.Format.formatter ->
assoc_kind ->
Ppx_deriving_runtime.unit
val show_assoc_kind : assoc_kind -> Ppx_deriving_runtime.string
val pp_ast_pass :
Ppx_deriving_runtime.Format.formatter ->
ast_pass ->
Ppx_deriving_runtime.unit
val show_ast_pass : ast_pass -> Ppx_deriving_runtime.string
val pp_attr_args :
Ppx_deriving_runtime.Format.formatter ->
attr_args ->
Ppx_deriving_runtime.unit
val show_attr_args : attr_args -> Ppx_deriving_runtime.string
val pp_attr_args_eq :
Ppx_deriving_runtime.Format.formatter ->
attr_args_eq ->
Ppx_deriving_runtime.unit
val show_attr_args_eq : attr_args_eq -> Ppx_deriving_runtime.string
val pp_attr_item :
Ppx_deriving_runtime.Format.formatter ->
attr_item ->
Ppx_deriving_runtime.unit
val show_attr_item : attr_item -> Ppx_deriving_runtime.string
val pp_attr_kind :
Ppx_deriving_runtime.Format.formatter ->
attr_kind ->
Ppx_deriving_runtime.unit
val show_attr_kind : attr_kind -> Ppx_deriving_runtime.string
val pp_attr_style :
Ppx_deriving_runtime.Format.formatter ->
attr_style ->
Ppx_deriving_runtime.unit
val show_attr_style : attr_style -> Ppx_deriving_runtime.string
val pp_attribute :
Ppx_deriving_runtime.Format.formatter ->
attribute ->
Ppx_deriving_runtime.unit
val show_attribute : attribute -> Ppx_deriving_runtime.string
val pp_backend_options_for__null :
Ppx_deriving_runtime.Format.formatter ->
backend_options_for__null ->
Ppx_deriving_runtime.unit
val show_backend_options_for__null :
backend_options_for__null ->
Ppx_deriving_runtime.string
val pp_backend_for__null :
Ppx_deriving_runtime.Format.formatter ->
backend_for__null ->
Ppx_deriving_runtime.unit
val show_backend_for__null : backend_for__null -> Ppx_deriving_runtime.string
val pp_bin_op :
Ppx_deriving_runtime.Format.formatter ->
bin_op ->
Ppx_deriving_runtime.unit
val show_bin_op : bin_op -> Ppx_deriving_runtime.string
val pp_binder_for__clause_kind :
Ppx_deriving_runtime.Format.formatter ->
binder_for__clause_kind ->
Ppx_deriving_runtime.unit
val show_binder_for__clause_kind :
binder_for__clause_kind ->
Ppx_deriving_runtime.string
val pp_binder_for__existential_predicate :
Ppx_deriving_runtime.Format.formatter ->
binder_for__existential_predicate ->
Ppx_deriving_runtime.unit
val show_binder_for__existential_predicate :
binder_for__existential_predicate ->
Ppx_deriving_runtime.string
val pp_binder_for__trait_predicate :
Ppx_deriving_runtime.Format.formatter ->
binder_for__trait_predicate ->
Ppx_deriving_runtime.unit
val show_binder_for__trait_predicate :
binder_for__trait_predicate ->
Ppx_deriving_runtime.string
val pp_binder_for__trait_ref :
Ppx_deriving_runtime.Format.formatter ->
binder_for__trait_ref ->
Ppx_deriving_runtime.unit
val show_binder_for__trait_ref :
binder_for__trait_ref ->
Ppx_deriving_runtime.string
val pp_binder_for__ty_fn_sig :
Ppx_deriving_runtime.Format.formatter ->
binder_for__ty_fn_sig ->
Ppx_deriving_runtime.unit
val show_binder_for__ty_fn_sig :
binder_for__ty_fn_sig ->
Ppx_deriving_runtime.string
val pp_binding_mode :
Ppx_deriving_runtime.Format.formatter ->
binding_mode ->
Ppx_deriving_runtime.unit
val show_binding_mode : binding_mode -> Ppx_deriving_runtime.string
val pp_block :
Ppx_deriving_runtime.Format.formatter ->
block ->
Ppx_deriving_runtime.unit
val show_block : block -> Ppx_deriving_runtime.string
val pp_block_safety :
Ppx_deriving_runtime.Format.formatter ->
block_safety ->
Ppx_deriving_runtime.unit
val show_block_safety : block_safety -> Ppx_deriving_runtime.string
val pp_borrow_kind :
Ppx_deriving_runtime.Format.formatter ->
borrow_kind ->
Ppx_deriving_runtime.unit
val show_borrow_kind : borrow_kind -> Ppx_deriving_runtime.string
val pp_bound_region :
Ppx_deriving_runtime.Format.formatter ->
bound_region ->
Ppx_deriving_runtime.unit
val show_bound_region : bound_region -> Ppx_deriving_runtime.string
val pp_bound_region_kind :
Ppx_deriving_runtime.Format.formatter ->
bound_region_kind ->
Ppx_deriving_runtime.unit
val show_bound_region_kind : bound_region_kind -> Ppx_deriving_runtime.string
val pp_bound_ty :
Ppx_deriving_runtime.Format.formatter ->
bound_ty ->
Ppx_deriving_runtime.unit
val show_bound_ty : bound_ty -> Ppx_deriving_runtime.string
val pp_bound_ty_kind :
Ppx_deriving_runtime.Format.formatter ->
bound_ty_kind ->
Ppx_deriving_runtime.unit
val show_bound_ty_kind : bound_ty_kind -> Ppx_deriving_runtime.string
val pp_bound_variable_kind :
Ppx_deriving_runtime.Format.formatter ->
bound_variable_kind ->
Ppx_deriving_runtime.unit
val show_bound_variable_kind :
bound_variable_kind ->
Ppx_deriving_runtime.string
val pp_by_ref :
Ppx_deriving_runtime.Format.formatter ->
by_ref ->
Ppx_deriving_runtime.unit
val show_by_ref : by_ref -> Ppx_deriving_runtime.string
val pp_canonical_ty_var_kind :
Ppx_deriving_runtime.Format.formatter ->
canonical_ty_var_kind ->
Ppx_deriving_runtime.unit
val show_canonical_ty_var_kind :
canonical_ty_var_kind ->
Ppx_deriving_runtime.string
val pp_canonical_user_type_annotation :
Ppx_deriving_runtime.Format.formatter ->
canonical_user_type_annotation ->
Ppx_deriving_runtime.unit
val show_canonical_user_type_annotation :
canonical_user_type_annotation ->
Ppx_deriving_runtime.string
val pp_canonical_var_info :
Ppx_deriving_runtime.Format.formatter ->
canonical_var_info ->
Ppx_deriving_runtime.unit
val show_canonical_var_info : canonical_var_info -> Ppx_deriving_runtime.string
val pp_canonical_for__user_type :
Ppx_deriving_runtime.Format.formatter ->
canonical_for__user_type ->
Ppx_deriving_runtime.unit
val show_canonical_for__user_type :
canonical_for__user_type ->
Ppx_deriving_runtime.string
val pp_clause :
Ppx_deriving_runtime.Format.formatter ->
clause ->
Ppx_deriving_runtime.unit
val show_clause : clause -> Ppx_deriving_runtime.string
val pp_clause_kind :
Ppx_deriving_runtime.Format.formatter ->
clause_kind ->
Ppx_deriving_runtime.unit
val show_clause_kind : clause_kind -> Ppx_deriving_runtime.string
val pp_closure_args :
Ppx_deriving_runtime.Format.formatter ->
closure_args ->
Ppx_deriving_runtime.unit
val show_closure_args : closure_args -> Ppx_deriving_runtime.string
val pp_closure_kind :
Ppx_deriving_runtime.Format.formatter ->
closure_kind ->
Ppx_deriving_runtime.unit
val show_closure_kind : closure_kind -> Ppx_deriving_runtime.string
val pp_command_for__null :
Ppx_deriving_runtime.Format.formatter ->
command_for__null ->
Ppx_deriving_runtime.unit
val show_command_for__null : command_for__null -> Ppx_deriving_runtime.string
val pp_comment_kind :
Ppx_deriving_runtime.Format.formatter ->
comment_kind ->
Ppx_deriving_runtime.unit
val show_comment_kind : comment_kind -> Ppx_deriving_runtime.string
val pp_const_arg_kind_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
const_arg_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_const_arg_kind_for__decorated_for__expr_kind :
const_arg_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_const_arg_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
const_arg_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_const_arg_for__decorated_for__expr_kind :
const_arg_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_constant_expr_kind :
Ppx_deriving_runtime.Format.formatter ->
constant_expr_kind ->
Ppx_deriving_runtime.unit
val show_constant_expr_kind : constant_expr_kind -> Ppx_deriving_runtime.string
val pp_constant_field_expr :
Ppx_deriving_runtime.Format.formatter ->
constant_field_expr ->
Ppx_deriving_runtime.unit
val show_constant_field_expr :
constant_field_expr ->
Ppx_deriving_runtime.string
val pp_constant_int :
Ppx_deriving_runtime.Format.formatter ->
constant_int ->
Ppx_deriving_runtime.unit
val show_constant_int : constant_int -> Ppx_deriving_runtime.string
val pp_constant_literal :
Ppx_deriving_runtime.Format.formatter ->
constant_literal ->
Ppx_deriving_runtime.unit
val show_constant_literal : constant_literal -> Ppx_deriving_runtime.string
val pp_constness :
Ppx_deriving_runtime.Format.formatter ->
constness ->
Ppx_deriving_runtime.unit
val show_constness : constness -> Ppx_deriving_runtime.string
val pp_ctor_kind :
Ppx_deriving_runtime.Format.formatter ->
ctor_kind ->
Ppx_deriving_runtime.unit
val show_ctor_kind : ctor_kind -> Ppx_deriving_runtime.string
val pp_ctor_of :
Ppx_deriving_runtime.Format.formatter ->
ctor_of ->
Ppx_deriving_runtime.unit
val show_ctor_of : ctor_of -> Ppx_deriving_runtime.string
val pp_debug_engine_mode :
Ppx_deriving_runtime.Format.formatter ->
debug_engine_mode ->
Ppx_deriving_runtime.unit
val show_debug_engine_mode : debug_engine_mode -> Ppx_deriving_runtime.string
val pp_decorated_for__constant_expr_kind :
Ppx_deriving_runtime.Format.formatter ->
decorated_for__constant_expr_kind ->
Ppx_deriving_runtime.unit
val show_decorated_for__constant_expr_kind :
decorated_for__constant_expr_kind ->
Ppx_deriving_runtime.string
val pp_decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_decorated_for__expr_kind :
decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_decorated_for__pat_kind :
Ppx_deriving_runtime.Format.formatter ->
decorated_for__pat_kind ->
Ppx_deriving_runtime.unit
val show_decorated_for__pat_kind :
decorated_for__pat_kind ->
Ppx_deriving_runtime.string
val pp_def_id :
Ppx_deriving_runtime.Format.formatter ->
def_id ->
Ppx_deriving_runtime.unit
val show_def_id : def_id -> Ppx_deriving_runtime.string
val pp_def_id_contents :
Ppx_deriving_runtime.Format.formatter ->
def_id_contents ->
Ppx_deriving_runtime.unit
val show_def_id_contents : def_id_contents -> Ppx_deriving_runtime.string
val pp_def_kind :
Ppx_deriving_runtime.Format.formatter ->
def_kind ->
Ppx_deriving_runtime.unit
val show_def_kind : def_kind -> Ppx_deriving_runtime.string
val pp_def_path_item :
Ppx_deriving_runtime.Format.formatter ->
def_path_item ->
Ppx_deriving_runtime.unit
val show_def_path_item : def_path_item -> Ppx_deriving_runtime.string
val pp_defaultness :
Ppx_deriving_runtime.Format.formatter ->
defaultness ->
Ppx_deriving_runtime.unit
val show_defaultness : defaultness -> Ppx_deriving_runtime.string
val pp_delim_args :
Ppx_deriving_runtime.Format.formatter ->
delim_args ->
Ppx_deriving_runtime.unit
val show_delim_args : delim_args -> Ppx_deriving_runtime.string
val pp_delim_span :
Ppx_deriving_runtime.Format.formatter ->
delim_span ->
Ppx_deriving_runtime.unit
val show_delim_span : delim_span -> Ppx_deriving_runtime.string
val pp_delimiter :
Ppx_deriving_runtime.Format.formatter ->
delimiter ->
Ppx_deriving_runtime.unit
val show_delimiter : delimiter -> Ppx_deriving_runtime.string
val pp_deps_kind :
Ppx_deriving_runtime.Format.formatter ->
deps_kind ->
Ppx_deriving_runtime.unit
val show_deps_kind : deps_kind -> Ppx_deriving_runtime.string
val pp_desugaring_kind :
Ppx_deriving_runtime.Format.formatter ->
desugaring_kind ->
Ppx_deriving_runtime.unit
val show_desugaring_kind : desugaring_kind -> Ppx_deriving_runtime.string
val pp_diagnostics :
Ppx_deriving_runtime.Format.formatter ->
diagnostics ->
Ppx_deriving_runtime.unit
val show_diagnostics : diagnostics -> Ppx_deriving_runtime.string
val pp_disambiguated_def_path_item :
Ppx_deriving_runtime.Format.formatter ->
disambiguated_def_path_item ->
Ppx_deriving_runtime.unit
val show_disambiguated_def_path_item :
disambiguated_def_path_item ->
Ppx_deriving_runtime.string
val pp_discriminant_definition :
Ppx_deriving_runtime.Format.formatter ->
discriminant_definition ->
Ppx_deriving_runtime.unit
val show_discriminant_definition :
discriminant_definition ->
Ppx_deriving_runtime.string
val pp_dyn_kind :
Ppx_deriving_runtime.Format.formatter ->
dyn_kind ->
Ppx_deriving_runtime.unit
val show_dyn_kind : dyn_kind -> Ppx_deriving_runtime.string
val pp_early_param_region :
Ppx_deriving_runtime.Format.formatter ->
early_param_region ->
Ppx_deriving_runtime.unit
val show_early_param_region : early_param_region -> Ppx_deriving_runtime.string
val pp_edition :
Ppx_deriving_runtime.Format.formatter ->
edition ->
Ppx_deriving_runtime.unit
val show_edition : edition -> Ppx_deriving_runtime.string
val pp_empty_args_extension :
Ppx_deriving_runtime.Format.formatter ->
empty_args_extension ->
Ppx_deriving_runtime.unit
val show_empty_args_extension :
empty_args_extension ->
Ppx_deriving_runtime.string
val pp_empty_subcommand_extension :
Ppx_deriving_runtime.Format.formatter ->
empty_subcommand_extension ->
Ppx_deriving_runtime.unit
val show_empty_subcommand_extension :
empty_subcommand_extension ->
Ppx_deriving_runtime.string
val pp_engine_options :
Ppx_deriving_runtime.Format.formatter ->
engine_options ->
Ppx_deriving_runtime.unit
val show_engine_options : engine_options -> Ppx_deriving_runtime.string
val pp_error_guaranteed :
Ppx_deriving_runtime.Format.formatter ->
error_guaranteed ->
Ppx_deriving_runtime.unit
val show_error_guaranteed : error_guaranteed -> Ppx_deriving_runtime.string
val pp_existential_predicate :
Ppx_deriving_runtime.Format.formatter ->
existential_predicate ->
Ppx_deriving_runtime.unit
val show_existential_predicate :
existential_predicate ->
Ppx_deriving_runtime.string
val pp_existential_projection :
Ppx_deriving_runtime.Format.formatter ->
existential_projection ->
Ppx_deriving_runtime.unit
val show_existential_projection :
existential_projection ->
Ppx_deriving_runtime.string
val pp_existential_trait_ref :
Ppx_deriving_runtime.Format.formatter ->
existential_trait_ref ->
Ppx_deriving_runtime.unit
val show_existential_trait_ref :
existential_trait_ref ->
Ppx_deriving_runtime.string
val pp_expn_data :
Ppx_deriving_runtime.Format.formatter ->
expn_data ->
Ppx_deriving_runtime.unit
val show_expn_data : expn_data -> Ppx_deriving_runtime.string
val pp_expn_kind :
Ppx_deriving_runtime.Format.formatter ->
expn_kind ->
Ppx_deriving_runtime.unit
val show_expn_kind : expn_kind -> Ppx_deriving_runtime.string
val pp_export_body_kind :
Ppx_deriving_runtime.Format.formatter ->
export_body_kind ->
Ppx_deriving_runtime.unit
val show_export_body_kind : export_body_kind -> Ppx_deriving_runtime.string
val pp_expr_kind :
Ppx_deriving_runtime.Format.formatter ->
expr_kind ->
Ppx_deriving_runtime.unit
val show_expr_kind : expr_kind -> Ppx_deriving_runtime.string
val pp_extensible_options_for__null :
Ppx_deriving_runtime.Format.formatter ->
extensible_options_for__null ->
Ppx_deriving_runtime.unit
val show_extensible_options_for__null :
extensible_options_for__null ->
Ppx_deriving_runtime.string
val pp_f_star_options_for__null :
Ppx_deriving_runtime.Format.formatter ->
f_star_options_for__null ->
Ppx_deriving_runtime.unit
val show_f_star_options_for__null :
f_star_options_for__null ->
Ppx_deriving_runtime.string
val pp_fake_borrow_kind :
Ppx_deriving_runtime.Format.formatter ->
fake_borrow_kind ->
Ppx_deriving_runtime.unit
val show_fake_borrow_kind : fake_borrow_kind -> Ppx_deriving_runtime.string
val pp_field_expr :
Ppx_deriving_runtime.Format.formatter ->
field_expr ->
Ppx_deriving_runtime.unit
val show_field_expr : field_expr -> Ppx_deriving_runtime.string
val pp_field_pat :
Ppx_deriving_runtime.Format.formatter ->
field_pat ->
Ppx_deriving_runtime.unit
val show_field_pat : field_pat -> Ppx_deriving_runtime.string
val pp_file :
Ppx_deriving_runtime.Format.formatter ->
file ->
Ppx_deriving_runtime.unit
val show_file : file -> Ppx_deriving_runtime.string
val pp_file_name :
Ppx_deriving_runtime.Format.formatter ->
file_name ->
Ppx_deriving_runtime.unit
val show_file_name : file_name -> Ppx_deriving_runtime.string
val pp_float_ty :
Ppx_deriving_runtime.Format.formatter ->
float_ty ->
Ppx_deriving_runtime.unit
val show_float_ty : float_ty -> Ppx_deriving_runtime.string
val pp_fn_decl :
Ppx_deriving_runtime.Format.formatter ->
fn_decl ->
Ppx_deriving_runtime.unit
val show_fn_decl : fn_decl -> Ppx_deriving_runtime.string
val pp_fn_def_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
fn_def_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_fn_def_for__decorated_for__expr_kind :
fn_def_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_fn_header :
Ppx_deriving_runtime.Format.formatter ->
fn_header ->
Ppx_deriving_runtime.unit
val show_fn_header : fn_header -> Ppx_deriving_runtime.string
val pp_fn_ret_ty :
Ppx_deriving_runtime.Format.formatter ->
fn_ret_ty ->
Ppx_deriving_runtime.unit
val show_fn_ret_ty : fn_ret_ty -> Ppx_deriving_runtime.string
val pp_fn_sig :
Ppx_deriving_runtime.Format.formatter ->
fn_sig ->
Ppx_deriving_runtime.unit
val show_fn_sig : fn_sig -> Ppx_deriving_runtime.string
val pp_force_cargo_build :
Ppx_deriving_runtime.Format.formatter ->
force_cargo_build ->
Ppx_deriving_runtime.unit
val show_force_cargo_build : force_cargo_build -> Ppx_deriving_runtime.string
val pp_foreign_item_kind_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
foreign_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_foreign_item_kind_for__decorated_for__expr_kind :
foreign_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_foreign_item_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
foreign_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_foreign_item_for__decorated_for__expr_kind :
foreign_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_from_engine :
Ppx_deriving_runtime.Format.formatter ->
from_engine ->
Ppx_deriving_runtime.unit
val show_from_engine : from_engine -> Ppx_deriving_runtime.string
val pp_fru_info :
Ppx_deriving_runtime.Format.formatter ->
fru_info ->
Ppx_deriving_runtime.unit
val show_fru_info : fru_info -> Ppx_deriving_runtime.string
val pp_generic_arg :
Ppx_deriving_runtime.Format.formatter ->
generic_arg ->
Ppx_deriving_runtime.unit
val show_generic_arg : generic_arg -> Ppx_deriving_runtime.string
val pp_generic_param_def :
Ppx_deriving_runtime.Format.formatter ->
generic_param_def ->
Ppx_deriving_runtime.unit
val show_generic_param_def : generic_param_def -> Ppx_deriving_runtime.string
val pp_generic_param_def_kind :
Ppx_deriving_runtime.Format.formatter ->
generic_param_def_kind ->
Ppx_deriving_runtime.unit
val show_generic_param_def_kind :
generic_param_def_kind ->
Ppx_deriving_runtime.string
val pp_generic_param_kind_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
generic_param_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_generic_param_kind_for__decorated_for__expr_kind :
generic_param_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_generic_param_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
generic_param_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_generic_param_for__decorated_for__expr_kind :
generic_param_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_generics_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
generics_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_generics_for__decorated_for__expr_kind :
generics_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_glob :
Ppx_deriving_runtime.Format.formatter ->
glob ->
Ppx_deriving_runtime.unit
val show_glob : glob -> Ppx_deriving_runtime.string
val pp_ha_assoc_role :
Ppx_deriving_runtime.Format.formatter ->
ha_assoc_role ->
Ppx_deriving_runtime.unit
val show_ha_assoc_role : ha_assoc_role -> Ppx_deriving_runtime.string
val pp_ha_item_quote :
Ppx_deriving_runtime.Format.formatter ->
ha_item_quote ->
Ppx_deriving_runtime.unit
val show_ha_item_quote : ha_item_quote -> Ppx_deriving_runtime.string
val pp_ha_item_quote_f_star_opts :
Ppx_deriving_runtime.Format.formatter ->
ha_item_quote_f_star_opts ->
Ppx_deriving_runtime.unit
val show_ha_item_quote_f_star_opts :
ha_item_quote_f_star_opts ->
Ppx_deriving_runtime.string
val pp_ha_item_quote_position :
Ppx_deriving_runtime.Format.formatter ->
ha_item_quote_position ->
Ppx_deriving_runtime.unit
val show_ha_item_quote_position :
ha_item_quote_position ->
Ppx_deriving_runtime.string
val pp_ha_item_status :
Ppx_deriving_runtime.Format.formatter ->
ha_item_status ->
Ppx_deriving_runtime.unit
val show_ha_item_status : ha_item_status -> Ppx_deriving_runtime.string
val pp_ha_payload :
Ppx_deriving_runtime.Format.formatter ->
ha_payload ->
Ppx_deriving_runtime.unit
val show_ha_payload : ha_payload -> Ppx_deriving_runtime.string
val pp_ha_uid :
Ppx_deriving_runtime.Format.formatter ->
ha_uid ->
Ppx_deriving_runtime.unit
val show_ha_uid : ha_uid -> Ppx_deriving_runtime.string
val pp_hir_field_def :
Ppx_deriving_runtime.Format.formatter ->
hir_field_def ->
Ppx_deriving_runtime.unit
val show_hir_field_def : hir_field_def -> Ppx_deriving_runtime.string
val pp_hir_generic_args :
Ppx_deriving_runtime.Format.formatter ->
hir_generic_args ->
Ppx_deriving_runtime.unit
val show_hir_generic_args : hir_generic_args -> Ppx_deriving_runtime.string
val pp_hir_id :
Ppx_deriving_runtime.Format.formatter ->
hir_id ->
Ppx_deriving_runtime.unit
val show_hir_id : hir_id -> Ppx_deriving_runtime.string
val pp_impl_expr :
Ppx_deriving_runtime.Format.formatter ->
impl_expr ->
Ppx_deriving_runtime.unit
val show_impl_expr : impl_expr -> Ppx_deriving_runtime.string
val pp_impl_expr_atom :
Ppx_deriving_runtime.Format.formatter ->
impl_expr_atom ->
Ppx_deriving_runtime.unit
val show_impl_expr_atom : impl_expr_atom -> Ppx_deriving_runtime.string
val pp_impl_expr_path_chunk :
Ppx_deriving_runtime.Format.formatter ->
impl_expr_path_chunk ->
Ppx_deriving_runtime.unit
val show_impl_expr_path_chunk :
impl_expr_path_chunk ->
Ppx_deriving_runtime.string
val pp_impl_infos :
Ppx_deriving_runtime.Format.formatter ->
impl_infos ->
Ppx_deriving_runtime.unit
val show_impl_infos : impl_infos -> Ppx_deriving_runtime.string
val pp_impl_item_kind_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
impl_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_impl_item_kind_for__decorated_for__expr_kind :
impl_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_impl_item_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
impl_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_impl_item_for__decorated_for__expr_kind :
impl_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_impl_polarity :
Ppx_deriving_runtime.Format.formatter ->
impl_polarity ->
Ppx_deriving_runtime.unit
val show_impl_polarity : impl_polarity -> Ppx_deriving_runtime.string
val pp_impl_trait_in_trait_data :
Ppx_deriving_runtime.Format.formatter ->
impl_trait_in_trait_data ->
Ppx_deriving_runtime.unit
val show_impl_trait_in_trait_data :
impl_trait_in_trait_data ->
Ppx_deriving_runtime.string
val pp_impl_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
impl_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_impl_for__decorated_for__expr_kind :
impl_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_implicit_self_kind :
Ppx_deriving_runtime.Format.formatter ->
implicit_self_kind ->
Ppx_deriving_runtime.unit
val show_implicit_self_kind : implicit_self_kind -> Ppx_deriving_runtime.string
val pp_inclusion_clause :
Ppx_deriving_runtime.Format.formatter ->
inclusion_clause ->
Ppx_deriving_runtime.unit
val show_inclusion_clause : inclusion_clause -> Ppx_deriving_runtime.string
val pp_inclusion_kind :
Ppx_deriving_runtime.Format.formatter ->
inclusion_kind ->
Ppx_deriving_runtime.unit
val show_inclusion_kind : inclusion_kind -> Ppx_deriving_runtime.string
val pp_infer_ty :
Ppx_deriving_runtime.Format.formatter ->
infer_ty ->
Ppx_deriving_runtime.unit
val show_infer_ty : infer_ty -> Ppx_deriving_runtime.string
val pp_inline_asm :
Ppx_deriving_runtime.Format.formatter ->
inline_asm ->
Ppx_deriving_runtime.unit
val show_inline_asm : inline_asm -> Ppx_deriving_runtime.string
val pp_int_ty :
Ppx_deriving_runtime.Format.formatter ->
int_ty ->
Ppx_deriving_runtime.unit
val show_int_ty : int_ty -> Ppx_deriving_runtime.string
val pp_integer_type :
Ppx_deriving_runtime.Format.formatter ->
integer_type ->
Ppx_deriving_runtime.unit
val show_integer_type : integer_type -> Ppx_deriving_runtime.string
val pp_is_async :
Ppx_deriving_runtime.Format.formatter ->
is_async ->
Ppx_deriving_runtime.unit
val show_is_async : is_async -> Ppx_deriving_runtime.string
val pp_is_auto :
Ppx_deriving_runtime.Format.formatter ->
is_auto ->
Ppx_deriving_runtime.unit
val show_is_auto : is_auto -> Ppx_deriving_runtime.string
val pp_item_attributes :
Ppx_deriving_runtime.Format.formatter ->
item_attributes ->
Ppx_deriving_runtime.unit
val show_item_attributes : item_attributes -> Ppx_deriving_runtime.string
val pp_item_kind_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_item_kind_for__decorated_for__expr_kind :
item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_item_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_item_for__decorated_for__expr_kind :
item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_kind :
Ppx_deriving_runtime.Format.formatter ->
kind ->
Ppx_deriving_runtime.unit
val show_kind : kind -> Ppx_deriving_runtime.string
val pp_late_param_region :
Ppx_deriving_runtime.Format.formatter ->
late_param_region ->
Ppx_deriving_runtime.unit
val show_late_param_region : late_param_region -> Ppx_deriving_runtime.string
val pp_lifetime_param_kind :
Ppx_deriving_runtime.Format.formatter ->
lifetime_param_kind ->
Ppx_deriving_runtime.unit
val show_lifetime_param_kind :
lifetime_param_kind ->
Ppx_deriving_runtime.string
val pp_lint_level :
Ppx_deriving_runtime.Format.formatter ->
lint_level ->
Ppx_deriving_runtime.unit
val show_lint_level : lint_level -> Ppx_deriving_runtime.string
val pp_lit_float_type :
Ppx_deriving_runtime.Format.formatter ->
lit_float_type ->
Ppx_deriving_runtime.unit
val show_lit_float_type : lit_float_type -> Ppx_deriving_runtime.string
val pp_lit_int_type :
Ppx_deriving_runtime.Format.formatter ->
lit_int_type ->
Ppx_deriving_runtime.unit
val show_lit_int_type : lit_int_type -> Ppx_deriving_runtime.string
val pp_lit_kind :
Ppx_deriving_runtime.Format.formatter ->
lit_kind ->
Ppx_deriving_runtime.unit
val show_lit_kind : lit_kind -> Ppx_deriving_runtime.string
val pp_loc :
Ppx_deriving_runtime.Format.formatter ->
loc ->
Ppx_deriving_runtime.unit
val show_loc : loc -> Ppx_deriving_runtime.string
val pp_local_ident :
Ppx_deriving_runtime.Format.formatter ->
local_ident ->
Ppx_deriving_runtime.unit
val show_local_ident : local_ident -> Ppx_deriving_runtime.string
val pp_logical_op :
Ppx_deriving_runtime.Format.formatter ->
logical_op ->
Ppx_deriving_runtime.unit
val show_logical_op : logical_op -> Ppx_deriving_runtime.string
val pp_macro_def :
Ppx_deriving_runtime.Format.formatter ->
macro_def ->
Ppx_deriving_runtime.unit
val show_macro_def : macro_def -> Ppx_deriving_runtime.string
val pp_macro_invokation :
Ppx_deriving_runtime.Format.formatter ->
macro_invokation ->
Ppx_deriving_runtime.unit
val show_macro_invokation : macro_invokation -> Ppx_deriving_runtime.string
val pp_macro_kind :
Ppx_deriving_runtime.Format.formatter ->
macro_kind ->
Ppx_deriving_runtime.unit
val show_macro_kind : macro_kind -> Ppx_deriving_runtime.string
val pp_message_format :
Ppx_deriving_runtime.Format.formatter ->
message_format ->
Ppx_deriving_runtime.unit
val show_message_format : message_format -> Ppx_deriving_runtime.string
val pp_meta_item_lit :
Ppx_deriving_runtime.Format.formatter ->
meta_item_lit ->
Ppx_deriving_runtime.unit
val show_meta_item_lit : meta_item_lit -> Ppx_deriving_runtime.string
val pp_missing_lifetime_kind :
Ppx_deriving_runtime.Format.formatter ->
missing_lifetime_kind ->
Ppx_deriving_runtime.unit
val show_missing_lifetime_kind :
missing_lifetime_kind ->
Ppx_deriving_runtime.string
val pp_movability :
Ppx_deriving_runtime.Format.formatter ->
movability ->
Ppx_deriving_runtime.unit
val show_movability : movability -> Ppx_deriving_runtime.string
val pp_mut_borrow_kind :
Ppx_deriving_runtime.Format.formatter ->
mut_borrow_kind ->
Ppx_deriving_runtime.unit
val show_mut_borrow_kind : mut_borrow_kind -> Ppx_deriving_runtime.string
val pp_namespace :
Ppx_deriving_runtime.Format.formatter ->
namespace ->
Ppx_deriving_runtime.unit
val show_namespace : namespace -> Ppx_deriving_runtime.string
val pp_namespace_chunk :
Ppx_deriving_runtime.Format.formatter ->
namespace_chunk ->
Ppx_deriving_runtime.unit
val show_namespace_chunk : namespace_chunk -> Ppx_deriving_runtime.string
val pp_node_for_def_id_contents_generated :
Ppx_deriving_runtime.Format.formatter ->
node_for__def_id_contents ->
Ppx_deriving_runtime.unit
val show_node_for_def_id_contents_generated :
node_for_def_id_contents_generated ->
Ppx_deriving_runtime.string
val pp_node_for_ty_kind_generated :
Ppx_deriving_runtime.Format.formatter ->
node_for__ty_kind ->
Ppx_deriving_runtime.unit
val show_node_for_ty_kind_generated :
node_for_ty_kind_generated ->
Ppx_deriving_runtime.string
val pp_non_macro_attr_kind :
Ppx_deriving_runtime.Format.formatter ->
non_macro_attr_kind ->
Ppx_deriving_runtime.unit
val show_non_macro_attr_kind :
non_macro_attr_kind ->
Ppx_deriving_runtime.string
val pp_normal_attr :
Ppx_deriving_runtime.Format.formatter ->
normal_attr ->
Ppx_deriving_runtime.unit
val show_normal_attr : normal_attr -> Ppx_deriving_runtime.string
val pp_outlives_predicate_for__node_for__ty_kind :
Ppx_deriving_runtime.Format.formatter ->
outlives_predicate_for__node_for__ty_kind ->
Ppx_deriving_runtime.unit
val show_outlives_predicate_for__node_for__ty_kind :
outlives_predicate_for__node_for__ty_kind ->
Ppx_deriving_runtime.string
val pp_outlives_predicate_for__region :
Ppx_deriving_runtime.Format.formatter ->
outlives_predicate_for__region ->
Ppx_deriving_runtime.unit
val show_outlives_predicate_for__region :
outlives_predicate_for__region ->
Ppx_deriving_runtime.string
val pp_output :
Ppx_deriving_runtime.Format.formatter ->
output ->
Ppx_deriving_runtime.unit
val show_output : output -> Ppx_deriving_runtime.string
val pp_param :
Ppx_deriving_runtime.Format.formatter ->
param ->
Ppx_deriving_runtime.unit
val show_param : param -> Ppx_deriving_runtime.string
val pp_param_const :
Ppx_deriving_runtime.Format.formatter ->
param_const ->
Ppx_deriving_runtime.unit
val show_param_const : param_const -> Ppx_deriving_runtime.string
val pp_param_name :
Ppx_deriving_runtime.Format.formatter ->
param_name ->
Ppx_deriving_runtime.unit
val show_param_name : param_name -> Ppx_deriving_runtime.string
val pp_param_ty :
Ppx_deriving_runtime.Format.formatter ->
param_ty ->
Ppx_deriving_runtime.unit
val show_param_ty : param_ty -> Ppx_deriving_runtime.string
val pp_pat_kind :
Ppx_deriving_runtime.Format.formatter ->
pat_kind ->
Ppx_deriving_runtime.unit
val show_pat_kind : pat_kind -> Ppx_deriving_runtime.string
val pp_pat_range :
Ppx_deriving_runtime.Format.formatter ->
pat_range ->
Ppx_deriving_runtime.unit
val show_pat_range : pat_range -> Ppx_deriving_runtime.string
val pp_pat_range_boundary :
Ppx_deriving_runtime.Format.formatter ->
pat_range_boundary ->
Ppx_deriving_runtime.unit
val show_pat_range_boundary : pat_range_boundary -> Ppx_deriving_runtime.string
val pp_path_or_dash :
Ppx_deriving_runtime.Format.formatter ->
path_or_dash ->
Ppx_deriving_runtime.unit
val show_path_or_dash : path_or_dash -> Ppx_deriving_runtime.string
val pp_path_segment :
Ppx_deriving_runtime.Format.formatter ->
path_segment ->
Ppx_deriving_runtime.unit
val show_path_segment : path_segment -> Ppx_deriving_runtime.string
val pp_placeholder_for__bound_region :
Ppx_deriving_runtime.Format.formatter ->
placeholder_for__bound_region ->
Ppx_deriving_runtime.unit
val show_placeholder_for__bound_region :
placeholder_for__bound_region ->
Ppx_deriving_runtime.string
val pp_placeholder_for__bound_ty :
Ppx_deriving_runtime.Format.formatter ->
placeholder_for__bound_ty ->
Ppx_deriving_runtime.unit
val show_placeholder_for__bound_ty :
placeholder_for__bound_ty ->
Ppx_deriving_runtime.string
val pp_placeholder_for_uint :
Ppx_deriving_runtime.Format.formatter ->
placeholder_for_uint ->
Ppx_deriving_runtime.unit
val show_placeholder_for_uint :
placeholder_for_uint ->
Ppx_deriving_runtime.string
val pp_pointer_coercion :
Ppx_deriving_runtime.Format.formatter ->
pointer_coercion ->
Ppx_deriving_runtime.unit
val show_pointer_coercion : pointer_coercion -> Ppx_deriving_runtime.string
val pp_prim_ty :
Ppx_deriving_runtime.Format.formatter ->
prim_ty ->
Ppx_deriving_runtime.unit
val show_prim_ty : prim_ty -> Ppx_deriving_runtime.string
val pp_pro_verif_options :
Ppx_deriving_runtime.Format.formatter ->
pro_verif_options ->
Ppx_deriving_runtime.unit
val show_pro_verif_options : pro_verif_options -> Ppx_deriving_runtime.string
val pp_profiling_data :
Ppx_deriving_runtime.Format.formatter ->
profiling_data ->
Ppx_deriving_runtime.unit
val show_profiling_data : profiling_data -> Ppx_deriving_runtime.string
val pp_projection_predicate :
Ppx_deriving_runtime.Format.formatter ->
projection_predicate ->
Ppx_deriving_runtime.unit
val show_projection_predicate :
projection_predicate ->
Ppx_deriving_runtime.string
val pp_q_path :
Ppx_deriving_runtime.Format.formatter ->
q_path ->
Ppx_deriving_runtime.unit
val show_q_path : q_path -> Ppx_deriving_runtime.string
val pp_range_end :
Ppx_deriving_runtime.Format.formatter ->
range_end ->
Ppx_deriving_runtime.unit
val show_range_end : range_end -> Ppx_deriving_runtime.string
val pp_real_file_name :
Ppx_deriving_runtime.Format.formatter ->
real_file_name ->
Ppx_deriving_runtime.unit
val show_real_file_name : real_file_name -> Ppx_deriving_runtime.string
val pp_region :
Ppx_deriving_runtime.Format.formatter ->
region ->
Ppx_deriving_runtime.unit
val show_region : region -> Ppx_deriving_runtime.string
val pp_region_kind :
Ppx_deriving_runtime.Format.formatter ->
region_kind ->
Ppx_deriving_runtime.unit
val show_region_kind : region_kind -> Ppx_deriving_runtime.string
val pp_repr_flags :
Ppx_deriving_runtime.Format.formatter ->
repr_flags ->
Ppx_deriving_runtime.unit
val show_repr_flags : repr_flags -> Ppx_deriving_runtime.string
val pp_repr_options :
Ppx_deriving_runtime.Format.formatter ->
repr_options ->
Ppx_deriving_runtime.unit
val show_repr_options : repr_options -> Ppx_deriving_runtime.string
val pp_res :
Ppx_deriving_runtime.Format.formatter ->
res ->
Ppx_deriving_runtime.unit
val show_res : res -> Ppx_deriving_runtime.string
val pp_result_of__string_or__string :
Ppx_deriving_runtime.Format.formatter ->
result_of__string_or__string ->
Ppx_deriving_runtime.unit
val show_result_of__string_or__string :
result_of__string_or__string ->
Ppx_deriving_runtime.string
val pp_safety :
Ppx_deriving_runtime.Format.formatter ->
safety ->
Ppx_deriving_runtime.unit
val show_safety : safety -> Ppx_deriving_runtime.string
val pp_scope :
Ppx_deriving_runtime.Format.formatter ->
scope ->
Ppx_deriving_runtime.unit
val show_scope : scope -> Ppx_deriving_runtime.string
val pp_scope_data :
Ppx_deriving_runtime.Format.formatter ->
scope_data ->
Ppx_deriving_runtime.unit
val show_scope_data : scope_data -> Ppx_deriving_runtime.string
val pp_source_map :
Ppx_deriving_runtime.Format.formatter ->
source_map ->
Ppx_deriving_runtime.unit
val show_source_map : source_map -> Ppx_deriving_runtime.string
val pp_span :
Ppx_deriving_runtime.Format.formatter ->
span ->
Ppx_deriving_runtime.unit
val show_span : span -> Ppx_deriving_runtime.string
val pp_spanned_for__lit_kind :
Ppx_deriving_runtime.Format.formatter ->
spanned_for__lit_kind ->
Ppx_deriving_runtime.unit
val show_spanned_for__lit_kind :
spanned_for__lit_kind ->
Ppx_deriving_runtime.string
val pp_stmt :
Ppx_deriving_runtime.Format.formatter ->
stmt ->
Ppx_deriving_runtime.unit
val show_stmt : stmt -> Ppx_deriving_runtime.string
val pp_stmt_kind :
Ppx_deriving_runtime.Format.formatter ->
stmt_kind ->
Ppx_deriving_runtime.unit
val show_stmt_kind : stmt_kind -> Ppx_deriving_runtime.string
val pp_str_style :
Ppx_deriving_runtime.Format.formatter ->
str_style ->
Ppx_deriving_runtime.unit
val show_str_style : str_style -> Ppx_deriving_runtime.string
val pp_term :
Ppx_deriving_runtime.Format.formatter ->
term ->
Ppx_deriving_runtime.unit
val show_term : term -> Ppx_deriving_runtime.string
val pp_to_engine :
Ppx_deriving_runtime.Format.formatter ->
to_engine ->
Ppx_deriving_runtime.unit
val show_to_engine : to_engine -> Ppx_deriving_runtime.string
val pp_trait_item_kind_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
trait_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_trait_item_kind_for__decorated_for__expr_kind :
trait_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_trait_item_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
trait_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_trait_item_for__decorated_for__expr_kind :
trait_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_trait_predicate :
Ppx_deriving_runtime.Format.formatter ->
trait_predicate ->
Ppx_deriving_runtime.unit
val show_trait_predicate : trait_predicate -> Ppx_deriving_runtime.string
val pp_trait_ref :
Ppx_deriving_runtime.Format.formatter ->
trait_ref ->
Ppx_deriving_runtime.unit
val show_trait_ref : trait_ref -> Ppx_deriving_runtime.string
val pp_translation_options :
Ppx_deriving_runtime.Format.formatter ->
translation_options ->
Ppx_deriving_runtime.unit
val show_translation_options :
translation_options ->
Ppx_deriving_runtime.string
val pp_ty_fn_sig :
Ppx_deriving_runtime.Format.formatter ->
ty_fn_sig ->
Ppx_deriving_runtime.unit
val show_ty_fn_sig : ty_fn_sig -> Ppx_deriving_runtime.string
val pp_ty_generics :
Ppx_deriving_runtime.Format.formatter ->
ty_generics ->
Ppx_deriving_runtime.unit
val show_ty_generics : ty_generics -> Ppx_deriving_runtime.string
val pp_ty_kind :
Ppx_deriving_runtime.Format.formatter ->
ty_kind ->
Ppx_deriving_runtime.unit
val show_ty_kind : ty_kind -> Ppx_deriving_runtime.string
val pp_uint_ty :
Ppx_deriving_runtime.Format.formatter ->
uint_ty ->
Ppx_deriving_runtime.unit
val show_uint_ty : uint_ty -> Ppx_deriving_runtime.string
val pp_un_op :
Ppx_deriving_runtime.Format.formatter ->
un_op ->
Ppx_deriving_runtime.unit
val show_un_op : un_op -> Ppx_deriving_runtime.string
val pp_use_kind :
Ppx_deriving_runtime.Format.formatter ->
use_kind ->
Ppx_deriving_runtime.unit
val show_use_kind : use_kind -> Ppx_deriving_runtime.string
val pp_use_path :
Ppx_deriving_runtime.Format.formatter ->
use_path ->
Ppx_deriving_runtime.unit
val show_use_path : use_path -> Ppx_deriving_runtime.string
val pp_user_type :
Ppx_deriving_runtime.Format.formatter ->
user_type ->
Ppx_deriving_runtime.unit
val show_user_type : user_type -> Ppx_deriving_runtime.string
val pp_variance :
Ppx_deriving_runtime.Format.formatter ->
variance ->
Ppx_deriving_runtime.unit
val show_variance : variance -> Ppx_deriving_runtime.string
val pp_variant_data :
Ppx_deriving_runtime.Format.formatter ->
variant_data ->
Ppx_deriving_runtime.unit
val show_variant_data : variant_data -> Ppx_deriving_runtime.string
val pp_variant_informations :
Ppx_deriving_runtime.Format.formatter ->
variant_informations ->
Ppx_deriving_runtime.unit
val show_variant_informations :
variant_informations ->
Ppx_deriving_runtime.string
val pp_variant_kind :
Ppx_deriving_runtime.Format.formatter ->
variant_kind ->
Ppx_deriving_runtime.unit
val show_variant_kind : variant_kind -> Ppx_deriving_runtime.string
val pp_variant_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
variant_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_variant_for__decorated_for__expr_kind :
variant_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_with_def_ids_for__decorated_for__expr_kind :
Ppx_deriving_runtime.Format.formatter ->
with_def_ids_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.unit
val show_with_def_ids_for__decorated_for__expr_kind :
with_def_ids_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.string
val pp_node_for__ty_kind :
Ppx_deriving_runtime.Format.formatter ->
node_for__ty_kind ->
Ppx_deriving_runtime.unit
val show_node_for__ty_kind : node_for__ty_kind -> Ppx_deriving_runtime.string
val pp_node_for__def_id_contents :
Ppx_deriving_runtime.Format.formatter ->
node_for__def_id_contents ->
Ppx_deriving_runtime.unit
val show_node_for__def_id_contents :
node_for__def_id_contents ->
Ppx_deriving_runtime.string
val equal_alias_kind : alias_kind -> alias_kind -> Ppx_deriving_runtime.bool
val equal_anon_const_for__decorated_for__expr_kind :
anon_const_for__decorated_for__expr_kind ->
anon_const_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_ascription : ascription -> ascription -> Ppx_deriving_runtime.bool
val equal_assoc_item : assoc_item -> assoc_item -> Ppx_deriving_runtime.bool
val equal_assoc_item_container :
assoc_item_container ->
assoc_item_container ->
Ppx_deriving_runtime.bool
val equal_assoc_kind : assoc_kind -> assoc_kind -> Ppx_deriving_runtime.bool
val equal_attr_args_eq :
attr_args_eq ->
attr_args_eq ->
Ppx_deriving_runtime.bool
val equal_attr_style : attr_style -> attr_style -> Ppx_deriving_runtime.bool
val equal_backend_options_for__null :
backend_options_for__null ->
backend_options_for__null ->
Ppx_deriving_runtime.bool
val equal_backend_for__null :
backend_for__null ->
backend_for__null ->
Ppx_deriving_runtime.bool
val equal_binder_for__clause_kind :
binder_for__clause_kind ->
binder_for__clause_kind ->
Ppx_deriving_runtime.bool
val equal_binder_for__existential_predicate :
binder_for__existential_predicate ->
binder_for__existential_predicate ->
Ppx_deriving_runtime.bool
val equal_binder_for__trait_predicate :
binder_for__trait_predicate ->
binder_for__trait_predicate ->
Ppx_deriving_runtime.bool
val equal_binder_for__trait_ref :
binder_for__trait_ref ->
binder_for__trait_ref ->
Ppx_deriving_runtime.bool
val equal_binder_for__ty_fn_sig :
binder_for__ty_fn_sig ->
binder_for__ty_fn_sig ->
Ppx_deriving_runtime.bool
val equal_binding_mode :
binding_mode ->
binding_mode ->
Ppx_deriving_runtime.bool
val equal_block_safety :
block_safety ->
block_safety ->
Ppx_deriving_runtime.bool
val equal_borrow_kind : borrow_kind -> borrow_kind -> Ppx_deriving_runtime.bool
val equal_bound_region :
bound_region ->
bound_region ->
Ppx_deriving_runtime.bool
val equal_bound_region_kind :
bound_region_kind ->
bound_region_kind ->
Ppx_deriving_runtime.bool
val equal_bound_ty_kind :
bound_ty_kind ->
bound_ty_kind ->
Ppx_deriving_runtime.bool
val equal_bound_variable_kind :
bound_variable_kind ->
bound_variable_kind ->
Ppx_deriving_runtime.bool
val equal_canonical_ty_var_kind :
canonical_ty_var_kind ->
canonical_ty_var_kind ->
Ppx_deriving_runtime.bool
val equal_canonical_user_type_annotation :
canonical_user_type_annotation ->
canonical_user_type_annotation ->
Ppx_deriving_runtime.bool
val equal_canonical_var_info :
canonical_var_info ->
canonical_var_info ->
Ppx_deriving_runtime.bool
val equal_canonical_for__user_type :
canonical_for__user_type ->
canonical_for__user_type ->
Ppx_deriving_runtime.bool
val equal_clause_kind : clause_kind -> clause_kind -> Ppx_deriving_runtime.bool
val equal_closure_args :
closure_args ->
closure_args ->
Ppx_deriving_runtime.bool
val equal_closure_kind :
closure_kind ->
closure_kind ->
Ppx_deriving_runtime.bool
val equal_command_for__null :
command_for__null ->
command_for__null ->
Ppx_deriving_runtime.bool
val equal_comment_kind :
comment_kind ->
comment_kind ->
Ppx_deriving_runtime.bool
val equal_const_arg_kind_for__decorated_for__expr_kind :
const_arg_kind_for__decorated_for__expr_kind ->
const_arg_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_const_arg_for__decorated_for__expr_kind :
const_arg_for__decorated_for__expr_kind ->
const_arg_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_constant_expr_kind :
constant_expr_kind ->
constant_expr_kind ->
Ppx_deriving_runtime.bool
val equal_constant_field_expr :
constant_field_expr ->
constant_field_expr ->
Ppx_deriving_runtime.bool
val equal_constant_int :
constant_int ->
constant_int ->
Ppx_deriving_runtime.bool
val equal_constant_literal :
constant_literal ->
constant_literal ->
Ppx_deriving_runtime.bool
val equal_debug_engine_mode :
debug_engine_mode ->
debug_engine_mode ->
Ppx_deriving_runtime.bool
val equal_decorated_for__constant_expr_kind :
decorated_for__constant_expr_kind ->
decorated_for__constant_expr_kind ->
Ppx_deriving_runtime.bool
val equal_decorated_for__expr_kind :
decorated_for__expr_kind ->
decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_decorated_for__pat_kind :
decorated_for__pat_kind ->
decorated_for__pat_kind ->
Ppx_deriving_runtime.bool
val equal_def_id_contents :
def_id_contents ->
def_id_contents ->
Ppx_deriving_runtime.bool
val equal_def_path_item :
def_path_item ->
def_path_item ->
Ppx_deriving_runtime.bool
val equal_defaultness : defaultness -> defaultness -> Ppx_deriving_runtime.bool
val equal_delim_args : delim_args -> delim_args -> Ppx_deriving_runtime.bool
val equal_delim_span : delim_span -> delim_span -> Ppx_deriving_runtime.bool
val equal_desugaring_kind :
desugaring_kind ->
desugaring_kind ->
Ppx_deriving_runtime.bool
val equal_diagnostics : diagnostics -> diagnostics -> Ppx_deriving_runtime.bool
val equal_disambiguated_def_path_item :
disambiguated_def_path_item ->
disambiguated_def_path_item ->
Ppx_deriving_runtime.bool
val equal_discriminant_definition :
discriminant_definition ->
discriminant_definition ->
Ppx_deriving_runtime.bool
val equal_early_param_region :
early_param_region ->
early_param_region ->
Ppx_deriving_runtime.bool
val equal_empty_args_extension :
empty_args_extension ->
empty_args_extension ->
Ppx_deriving_runtime.bool
val equal_empty_subcommand_extension :
empty_subcommand_extension ->
empty_subcommand_extension ->
Ppx_deriving_runtime.bool
val equal_engine_options :
engine_options ->
engine_options ->
Ppx_deriving_runtime.bool
val equal_error_guaranteed :
error_guaranteed ->
error_guaranteed ->
Ppx_deriving_runtime.bool
val equal_existential_predicate :
existential_predicate ->
existential_predicate ->
Ppx_deriving_runtime.bool
val equal_existential_projection :
existential_projection ->
existential_projection ->
Ppx_deriving_runtime.bool
val equal_existential_trait_ref :
existential_trait_ref ->
existential_trait_ref ->
Ppx_deriving_runtime.bool
val equal_export_body_kind :
export_body_kind ->
export_body_kind ->
Ppx_deriving_runtime.bool
val equal_extensible_options_for__null :
extensible_options_for__null ->
extensible_options_for__null ->
Ppx_deriving_runtime.bool
val equal_f_star_options_for__null :
f_star_options_for__null ->
f_star_options_for__null ->
Ppx_deriving_runtime.bool
val equal_fake_borrow_kind :
fake_borrow_kind ->
fake_borrow_kind ->
Ppx_deriving_runtime.bool
val equal_field_expr : field_expr -> field_expr -> Ppx_deriving_runtime.bool
val equal_fn_def_for__decorated_for__expr_kind :
fn_def_for__decorated_for__expr_kind ->
fn_def_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_force_cargo_build :
force_cargo_build ->
force_cargo_build ->
Ppx_deriving_runtime.bool
val equal_foreign_item_kind_for__decorated_for__expr_kind :
foreign_item_kind_for__decorated_for__expr_kind ->
foreign_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_foreign_item_for__decorated_for__expr_kind :
foreign_item_for__decorated_for__expr_kind ->
foreign_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_from_engine : from_engine -> from_engine -> Ppx_deriving_runtime.bool
val equal_generic_arg : generic_arg -> generic_arg -> Ppx_deriving_runtime.bool
val equal_generic_param_def :
generic_param_def ->
generic_param_def ->
Ppx_deriving_runtime.bool
val equal_generic_param_def_kind :
generic_param_def_kind ->
generic_param_def_kind ->
Ppx_deriving_runtime.bool
val equal_generic_param_kind_for__decorated_for__expr_kind :
generic_param_kind_for__decorated_for__expr_kind ->
generic_param_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_generic_param_for__decorated_for__expr_kind :
generic_param_for__decorated_for__expr_kind ->
generic_param_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_generics_for__decorated_for__expr_kind :
generics_for__decorated_for__expr_kind ->
generics_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_ha_assoc_role :
ha_assoc_role ->
ha_assoc_role ->
Ppx_deriving_runtime.bool
val equal_ha_item_quote :
ha_item_quote ->
ha_item_quote ->
Ppx_deriving_runtime.bool
val equal_ha_item_quote_f_star_opts :
ha_item_quote_f_star_opts ->
ha_item_quote_f_star_opts ->
Ppx_deriving_runtime.bool
val equal_ha_item_quote_position :
ha_item_quote_position ->
ha_item_quote_position ->
Ppx_deriving_runtime.bool
val equal_ha_item_status :
ha_item_status ->
ha_item_status ->
Ppx_deriving_runtime.bool
val equal_ha_payload : ha_payload -> ha_payload -> Ppx_deriving_runtime.bool
val equal_hir_field_def :
hir_field_def ->
hir_field_def ->
Ppx_deriving_runtime.bool
val equal_hir_generic_args :
hir_generic_args ->
hir_generic_args ->
Ppx_deriving_runtime.bool
val equal_impl_expr_atom :
impl_expr_atom ->
impl_expr_atom ->
Ppx_deriving_runtime.bool
val equal_impl_expr_path_chunk :
impl_expr_path_chunk ->
impl_expr_path_chunk ->
Ppx_deriving_runtime.bool
val equal_impl_infos : impl_infos -> impl_infos -> Ppx_deriving_runtime.bool
val equal_impl_item_kind_for__decorated_for__expr_kind :
impl_item_kind_for__decorated_for__expr_kind ->
impl_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_impl_item_for__decorated_for__expr_kind :
impl_item_for__decorated_for__expr_kind ->
impl_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_impl_polarity :
impl_polarity ->
impl_polarity ->
Ppx_deriving_runtime.bool
val equal_impl_trait_in_trait_data :
impl_trait_in_trait_data ->
impl_trait_in_trait_data ->
Ppx_deriving_runtime.bool
val equal_impl_for__decorated_for__expr_kind :
impl_for__decorated_for__expr_kind ->
impl_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_implicit_self_kind :
implicit_self_kind ->
implicit_self_kind ->
Ppx_deriving_runtime.bool
val equal_inclusion_clause :
inclusion_clause ->
inclusion_clause ->
Ppx_deriving_runtime.bool
val equal_inclusion_kind :
inclusion_kind ->
inclusion_kind ->
Ppx_deriving_runtime.bool
val equal_inline_asm : inline_asm -> inline_asm -> Ppx_deriving_runtime.bool
val equal_integer_type :
integer_type ->
integer_type ->
Ppx_deriving_runtime.bool
val equal_item_attributes :
item_attributes ->
item_attributes ->
Ppx_deriving_runtime.bool
val equal_item_kind_for__decorated_for__expr_kind :
item_kind_for__decorated_for__expr_kind ->
item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_item_for__decorated_for__expr_kind :
item_for__decorated_for__expr_kind ->
item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_late_param_region :
late_param_region ->
late_param_region ->
Ppx_deriving_runtime.bool
val equal_lifetime_param_kind :
lifetime_param_kind ->
lifetime_param_kind ->
Ppx_deriving_runtime.bool
val equal_lint_level : lint_level -> lint_level -> Ppx_deriving_runtime.bool
val equal_lit_float_type :
lit_float_type ->
lit_float_type ->
Ppx_deriving_runtime.bool
val equal_lit_int_type :
lit_int_type ->
lit_int_type ->
Ppx_deriving_runtime.bool
val equal_local_ident : local_ident -> local_ident -> Ppx_deriving_runtime.bool
val equal_logical_op : logical_op -> logical_op -> Ppx_deriving_runtime.bool
val equal_macro_invokation :
macro_invokation ->
macro_invokation ->
Ppx_deriving_runtime.bool
val equal_macro_kind : macro_kind -> macro_kind -> Ppx_deriving_runtime.bool
val equal_message_format :
message_format ->
message_format ->
Ppx_deriving_runtime.bool
val equal_meta_item_lit :
meta_item_lit ->
meta_item_lit ->
Ppx_deriving_runtime.bool
val equal_missing_lifetime_kind :
missing_lifetime_kind ->
missing_lifetime_kind ->
Ppx_deriving_runtime.bool
val equal_movability : movability -> movability -> Ppx_deriving_runtime.bool
val equal_mut_borrow_kind :
mut_borrow_kind ->
mut_borrow_kind ->
Ppx_deriving_runtime.bool
val equal_namespace_chunk :
namespace_chunk ->
namespace_chunk ->
Ppx_deriving_runtime.bool
val equal_node_for_def_id_contents_generated :
node_for__def_id_contents ->
node_for__def_id_contents ->
Ppx_deriving_runtime.bool
val equal_node_for_ty_kind_generated :
node_for__ty_kind ->
node_for__ty_kind ->
Ppx_deriving_runtime.bool
val equal_non_macro_attr_kind :
non_macro_attr_kind ->
non_macro_attr_kind ->
Ppx_deriving_runtime.bool
val equal_normal_attr : normal_attr -> normal_attr -> Ppx_deriving_runtime.bool
val equal_outlives_predicate_for__node_for__ty_kind :
outlives_predicate_for__node_for__ty_kind ->
outlives_predicate_for__node_for__ty_kind ->
Ppx_deriving_runtime.bool
val equal_outlives_predicate_for__region :
outlives_predicate_for__region ->
outlives_predicate_for__region ->
Ppx_deriving_runtime.bool
val equal_param_const : param_const -> param_const -> Ppx_deriving_runtime.bool
val equal_param_name : param_name -> param_name -> Ppx_deriving_runtime.bool
val equal_pat_range_boundary :
pat_range_boundary ->
pat_range_boundary ->
Ppx_deriving_runtime.bool
val equal_path_or_dash :
path_or_dash ->
path_or_dash ->
Ppx_deriving_runtime.bool
val equal_path_segment :
path_segment ->
path_segment ->
Ppx_deriving_runtime.bool
val equal_placeholder_for__bound_region :
placeholder_for__bound_region ->
placeholder_for__bound_region ->
Ppx_deriving_runtime.bool
val equal_placeholder_for__bound_ty :
placeholder_for__bound_ty ->
placeholder_for__bound_ty ->
Ppx_deriving_runtime.bool
val equal_placeholder_for_uint :
placeholder_for_uint ->
placeholder_for_uint ->
Ppx_deriving_runtime.bool
val equal_pointer_coercion :
pointer_coercion ->
pointer_coercion ->
Ppx_deriving_runtime.bool
val equal_pro_verif_options :
pro_verif_options ->
pro_verif_options ->
Ppx_deriving_runtime.bool
val equal_profiling_data :
profiling_data ->
profiling_data ->
Ppx_deriving_runtime.bool
val equal_projection_predicate :
projection_predicate ->
projection_predicate ->
Ppx_deriving_runtime.bool
val equal_real_file_name :
real_file_name ->
real_file_name ->
Ppx_deriving_runtime.bool
val equal_region_kind : region_kind -> region_kind -> Ppx_deriving_runtime.bool
val equal_repr_flags : repr_flags -> repr_flags -> Ppx_deriving_runtime.bool
val equal_repr_options :
repr_options ->
repr_options ->
Ppx_deriving_runtime.bool
val equal_result_of__string_or__string :
result_of__string_or__string ->
result_of__string_or__string ->
Ppx_deriving_runtime.bool
val equal_scope_data : scope_data -> scope_data -> Ppx_deriving_runtime.bool
val equal_source_map : source_map -> source_map -> Ppx_deriving_runtime.bool
val equal_spanned_for__lit_kind :
spanned_for__lit_kind ->
spanned_for__lit_kind ->
Ppx_deriving_runtime.bool
val equal_trait_item_kind_for__decorated_for__expr_kind :
trait_item_kind_for__decorated_for__expr_kind ->
trait_item_kind_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_trait_item_for__decorated_for__expr_kind :
trait_item_for__decorated_for__expr_kind ->
trait_item_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_trait_predicate :
trait_predicate ->
trait_predicate ->
Ppx_deriving_runtime.bool
val equal_translation_options :
translation_options ->
translation_options ->
Ppx_deriving_runtime.bool
val equal_ty_generics : ty_generics -> ty_generics -> Ppx_deriving_runtime.bool
val equal_variant_data :
variant_data ->
variant_data ->
Ppx_deriving_runtime.bool
val equal_variant_informations :
variant_informations ->
variant_informations ->
Ppx_deriving_runtime.bool
val equal_variant_kind :
variant_kind ->
variant_kind ->
Ppx_deriving_runtime.bool
val equal_variant_for__decorated_for__expr_kind :
variant_for__decorated_for__expr_kind ->
variant_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_with_def_ids_for__decorated_for__expr_kind :
with_def_ids_for__decorated_for__expr_kind ->
with_def_ids_for__decorated_for__expr_kind ->
Ppx_deriving_runtime.bool
val equal_node_for__ty_kind :
node_for__ty_kind ->
node_for__ty_kind ->
Ppx_deriving_runtime.bool
val equal_node_for__def_id_contents :
node_for__def_id_contents ->
node_for__def_id_contents ->
Ppx_deriving_runtime.bool
val cache_map :
(int64, [ `JSON of Yojson.Safe.t | `Value of map_types ]) Base.Hashtbl.t
module Exn : sig ... end
val safe_yojson_of_abi : abi -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_abi_of_yojson : Yojson.Safe.t -> (abi, Base.Error.t) Base.Result.t
val yojson_of_abi : abi -> Yojson.Safe.t
val abi_of_yojson : Yojson.Safe.t -> abi
val safe_yojson_of_adt_expr :
adt_expr ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_adt_expr_of_yojson :
Yojson.Safe.t ->
(adt_expr, Base.Error.t) Base.Result.t
val yojson_of_adt_expr : adt_expr -> Yojson.Safe.t
val adt_expr_of_yojson : Yojson.Safe.t -> adt_expr
val safe_yojson_of_alias : alias -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_alias_of_yojson : Yojson.Safe.t -> (alias, Base.Error.t) Base.Result.t
val yojson_of_alias : alias -> Yojson.Safe.t
val alias_of_yojson : Yojson.Safe.t -> alias
val safe_yojson_of_alias_kind :
alias_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_alias_kind_of_yojson :
Yojson.Safe.t ->
(alias_kind, Base.Error.t) Base.Result.t
val yojson_of_alias_kind : alias_kind -> Yojson.Safe.t
val alias_kind_of_yojson : Yojson.Safe.t -> alias_kind
val safe_yojson_of_align : align -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_align_of_yojson : Yojson.Safe.t -> (align, Base.Error.t) Base.Result.t
val yojson_of_align : align -> Yojson.Safe.t
val align_of_yojson : Yojson.Safe.t -> align
val safe_yojson_of_anon_const_for__decorated_for__expr_kind :
anon_const_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_anon_const_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(anon_const_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_anon_const_for__decorated_for__expr_kind :
anon_const_for__decorated_for__expr_kind ->
Yojson.Safe.t
val anon_const_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
anon_const_for__decorated_for__expr_kind
val safe_yojson_of_arm : arm -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_arm_of_yojson : Yojson.Safe.t -> (arm, Base.Error.t) Base.Result.t
val yojson_of_arm : arm -> Yojson.Safe.t
val arm_of_yojson : Yojson.Safe.t -> arm
val safe_yojson_of_ascription :
ascription ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ascription_of_yojson :
Yojson.Safe.t ->
(ascription, Base.Error.t) Base.Result.t
val yojson_of_ascription : ascription -> Yojson.Safe.t
val ascription_of_yojson : Yojson.Safe.t -> ascription
val safe_yojson_of_assoc_item :
assoc_item ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_assoc_item_of_yojson :
Yojson.Safe.t ->
(assoc_item, Base.Error.t) Base.Result.t
val yojson_of_assoc_item : assoc_item -> Yojson.Safe.t
val assoc_item_of_yojson : Yojson.Safe.t -> assoc_item
val safe_yojson_of_assoc_item_container :
assoc_item_container ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_assoc_item_container_of_yojson :
Yojson.Safe.t ->
(assoc_item_container, Base.Error.t) Base.Result.t
val yojson_of_assoc_item_container : assoc_item_container -> Yojson.Safe.t
val assoc_item_container_of_yojson : Yojson.Safe.t -> assoc_item_container
val safe_yojson_of_assoc_kind :
assoc_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_assoc_kind_of_yojson :
Yojson.Safe.t ->
(assoc_kind, Base.Error.t) Base.Result.t
val yojson_of_assoc_kind : assoc_kind -> Yojson.Safe.t
val assoc_kind_of_yojson : Yojson.Safe.t -> assoc_kind
val safe_yojson_of_ast_pass :
ast_pass ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ast_pass_of_yojson :
Yojson.Safe.t ->
(ast_pass, Base.Error.t) Base.Result.t
val yojson_of_ast_pass : ast_pass -> Yojson.Safe.t
val ast_pass_of_yojson : Yojson.Safe.t -> ast_pass
val safe_yojson_of_attr_args :
attr_args ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_attr_args_of_yojson :
Yojson.Safe.t ->
(attr_args, Base.Error.t) Base.Result.t
val yojson_of_attr_args : attr_args -> Yojson.Safe.t
val attr_args_of_yojson : Yojson.Safe.t -> attr_args
val safe_yojson_of_attr_args_eq :
attr_args_eq ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_attr_args_eq_of_yojson :
Yojson.Safe.t ->
(attr_args_eq, Base.Error.t) Base.Result.t
val yojson_of_attr_args_eq : attr_args_eq -> Yojson.Safe.t
val attr_args_eq_of_yojson : Yojson.Safe.t -> attr_args_eq
val safe_yojson_of_attr_item :
attr_item ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_attr_item_of_yojson :
Yojson.Safe.t ->
(attr_item, Base.Error.t) Base.Result.t
val yojson_of_attr_item : attr_item -> Yojson.Safe.t
val attr_item_of_yojson : Yojson.Safe.t -> attr_item
val safe_yojson_of_attr_kind :
attr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_attr_kind_of_yojson :
Yojson.Safe.t ->
(attr_kind, Base.Error.t) Base.Result.t
val yojson_of_attr_kind : attr_kind -> Yojson.Safe.t
val attr_kind_of_yojson : Yojson.Safe.t -> attr_kind
val safe_yojson_of_attr_style :
attr_style ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_attr_style_of_yojson :
Yojson.Safe.t ->
(attr_style, Base.Error.t) Base.Result.t
val yojson_of_attr_style : attr_style -> Yojson.Safe.t
val attr_style_of_yojson : Yojson.Safe.t -> attr_style
val safe_yojson_of_attribute :
attribute ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_attribute_of_yojson :
Yojson.Safe.t ->
(attribute, Base.Error.t) Base.Result.t
val yojson_of_attribute : attribute -> Yojson.Safe.t
val attribute_of_yojson : Yojson.Safe.t -> attribute
val safe_yojson_of_backend_options_for__null :
backend_options_for__null ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_backend_options_for__null_of_yojson :
Yojson.Safe.t ->
(backend_options_for__null, Base.Error.t) Base.Result.t
val yojson_of_backend_options_for__null :
backend_options_for__null ->
Yojson.Safe.t
val backend_options_for__null_of_yojson :
Yojson.Safe.t ->
backend_options_for__null
val safe_yojson_of_backend_for__null :
backend_for__null ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_backend_for__null_of_yojson :
Yojson.Safe.t ->
(backend_for__null, Base.Error.t) Base.Result.t
val yojson_of_backend_for__null : backend_for__null -> Yojson.Safe.t
val backend_for__null_of_yojson : Yojson.Safe.t -> backend_for__null
val safe_yojson_of_bin_op :
bin_op ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_bin_op_of_yojson :
Yojson.Safe.t ->
(bin_op, Base.Error.t) Base.Result.t
val yojson_of_bin_op : bin_op -> Yojson.Safe.t
val bin_op_of_yojson : Yojson.Safe.t -> bin_op
val safe_yojson_of_binder_for__clause_kind :
binder_for__clause_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_binder_for__clause_kind_of_yojson :
Yojson.Safe.t ->
(binder_for__clause_kind, Base.Error.t) Base.Result.t
val yojson_of_binder_for__clause_kind :
binder_for__clause_kind ->
Yojson.Safe.t
val binder_for__clause_kind_of_yojson :
Yojson.Safe.t ->
binder_for__clause_kind
val safe_yojson_of_binder_for__existential_predicate :
binder_for__existential_predicate ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_binder_for__existential_predicate_of_yojson :
Yojson.Safe.t ->
(binder_for__existential_predicate, Base.Error.t) Base.Result.t
val yojson_of_binder_for__existential_predicate :
binder_for__existential_predicate ->
Yojson.Safe.t
val binder_for__existential_predicate_of_yojson :
Yojson.Safe.t ->
binder_for__existential_predicate
val safe_yojson_of_binder_for__trait_predicate :
binder_for__trait_predicate ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_binder_for__trait_predicate_of_yojson :
Yojson.Safe.t ->
(binder_for__trait_predicate, Base.Error.t) Base.Result.t
val yojson_of_binder_for__trait_predicate :
binder_for__trait_predicate ->
Yojson.Safe.t
val binder_for__trait_predicate_of_yojson :
Yojson.Safe.t ->
binder_for__trait_predicate
val safe_yojson_of_binder_for__trait_ref :
binder_for__trait_ref ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_binder_for__trait_ref_of_yojson :
Yojson.Safe.t ->
(binder_for__trait_ref, Base.Error.t) Base.Result.t
val yojson_of_binder_for__trait_ref : binder_for__trait_ref -> Yojson.Safe.t
val binder_for__trait_ref_of_yojson : Yojson.Safe.t -> binder_for__trait_ref
val safe_yojson_of_binder_for__ty_fn_sig :
binder_for__ty_fn_sig ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_binder_for__ty_fn_sig_of_yojson :
Yojson.Safe.t ->
(binder_for__ty_fn_sig, Base.Error.t) Base.Result.t
val yojson_of_binder_for__ty_fn_sig : binder_for__ty_fn_sig -> Yojson.Safe.t
val binder_for__ty_fn_sig_of_yojson : Yojson.Safe.t -> binder_for__ty_fn_sig
val safe_yojson_of_binding_mode :
binding_mode ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_binding_mode_of_yojson :
Yojson.Safe.t ->
(binding_mode, Base.Error.t) Base.Result.t
val yojson_of_binding_mode : binding_mode -> Yojson.Safe.t
val binding_mode_of_yojson : Yojson.Safe.t -> binding_mode
val safe_yojson_of_block : block -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_block_of_yojson : Yojson.Safe.t -> (block, Base.Error.t) Base.Result.t
val yojson_of_block : block -> Yojson.Safe.t
val block_of_yojson : Yojson.Safe.t -> block
val safe_yojson_of_block_safety :
block_safety ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_block_safety_of_yojson :
Yojson.Safe.t ->
(block_safety, Base.Error.t) Base.Result.t
val yojson_of_block_safety : block_safety -> Yojson.Safe.t
val block_safety_of_yojson : Yojson.Safe.t -> block_safety
val safe_yojson_of_borrow_kind :
borrow_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_borrow_kind_of_yojson :
Yojson.Safe.t ->
(borrow_kind, Base.Error.t) Base.Result.t
val yojson_of_borrow_kind : borrow_kind -> Yojson.Safe.t
val borrow_kind_of_yojson : Yojson.Safe.t -> borrow_kind
val safe_yojson_of_bound_region :
bound_region ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_bound_region_of_yojson :
Yojson.Safe.t ->
(bound_region, Base.Error.t) Base.Result.t
val yojson_of_bound_region : bound_region -> Yojson.Safe.t
val bound_region_of_yojson : Yojson.Safe.t -> bound_region
val safe_yojson_of_bound_region_kind :
bound_region_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_bound_region_kind_of_yojson :
Yojson.Safe.t ->
(bound_region_kind, Base.Error.t) Base.Result.t
val yojson_of_bound_region_kind : bound_region_kind -> Yojson.Safe.t
val bound_region_kind_of_yojson : Yojson.Safe.t -> bound_region_kind
val safe_yojson_of_bound_ty :
bound_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_bound_ty_of_yojson :
Yojson.Safe.t ->
(bound_ty, Base.Error.t) Base.Result.t
val yojson_of_bound_ty : bound_ty -> Yojson.Safe.t
val bound_ty_of_yojson : Yojson.Safe.t -> bound_ty
val safe_yojson_of_bound_ty_kind :
bound_ty_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_bound_ty_kind_of_yojson :
Yojson.Safe.t ->
(bound_ty_kind, Base.Error.t) Base.Result.t
val yojson_of_bound_ty_kind : bound_ty_kind -> Yojson.Safe.t
val bound_ty_kind_of_yojson : Yojson.Safe.t -> bound_ty_kind
val safe_yojson_of_bound_variable_kind :
bound_variable_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_bound_variable_kind_of_yojson :
Yojson.Safe.t ->
(bound_variable_kind, Base.Error.t) Base.Result.t
val yojson_of_bound_variable_kind : bound_variable_kind -> Yojson.Safe.t
val bound_variable_kind_of_yojson : Yojson.Safe.t -> bound_variable_kind
val safe_yojson_of_by_ref :
by_ref ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_by_ref_of_yojson :
Yojson.Safe.t ->
(by_ref, Base.Error.t) Base.Result.t
val yojson_of_by_ref : by_ref -> Yojson.Safe.t
val by_ref_of_yojson : Yojson.Safe.t -> by_ref
val safe_yojson_of_canonical_ty_var_kind :
canonical_ty_var_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_canonical_ty_var_kind_of_yojson :
Yojson.Safe.t ->
(canonical_ty_var_kind, Base.Error.t) Base.Result.t
val yojson_of_canonical_ty_var_kind : canonical_ty_var_kind -> Yojson.Safe.t
val canonical_ty_var_kind_of_yojson : Yojson.Safe.t -> canonical_ty_var_kind
val safe_yojson_of_canonical_user_type_annotation :
canonical_user_type_annotation ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_canonical_user_type_annotation_of_yojson :
Yojson.Safe.t ->
(canonical_user_type_annotation, Base.Error.t) Base.Result.t
val yojson_of_canonical_user_type_annotation :
canonical_user_type_annotation ->
Yojson.Safe.t
val canonical_user_type_annotation_of_yojson :
Yojson.Safe.t ->
canonical_user_type_annotation
val safe_yojson_of_canonical_var_info :
canonical_var_info ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_canonical_var_info_of_yojson :
Yojson.Safe.t ->
(canonical_var_info, Base.Error.t) Base.Result.t
val yojson_of_canonical_var_info : canonical_var_info -> Yojson.Safe.t
val canonical_var_info_of_yojson : Yojson.Safe.t -> canonical_var_info
val safe_yojson_of_canonical_for__user_type :
canonical_for__user_type ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_canonical_for__user_type_of_yojson :
Yojson.Safe.t ->
(canonical_for__user_type, Base.Error.t) Base.Result.t
val yojson_of_canonical_for__user_type :
canonical_for__user_type ->
Yojson.Safe.t
val canonical_for__user_type_of_yojson :
Yojson.Safe.t ->
canonical_for__user_type
val safe_yojson_of_clause :
clause ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_clause_of_yojson :
Yojson.Safe.t ->
(clause, Base.Error.t) Base.Result.t
val yojson_of_clause : clause -> Yojson.Safe.t
val clause_of_yojson : Yojson.Safe.t -> clause
val safe_yojson_of_clause_kind :
clause_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_clause_kind_of_yojson :
Yojson.Safe.t ->
(clause_kind, Base.Error.t) Base.Result.t
val yojson_of_clause_kind : clause_kind -> Yojson.Safe.t
val clause_kind_of_yojson : Yojson.Safe.t -> clause_kind
val safe_yojson_of_closure_args :
closure_args ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_closure_args_of_yojson :
Yojson.Safe.t ->
(closure_args, Base.Error.t) Base.Result.t
val yojson_of_closure_args : closure_args -> Yojson.Safe.t
val closure_args_of_yojson : Yojson.Safe.t -> closure_args
val safe_yojson_of_closure_kind :
closure_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_closure_kind_of_yojson :
Yojson.Safe.t ->
(closure_kind, Base.Error.t) Base.Result.t
val yojson_of_closure_kind : closure_kind -> Yojson.Safe.t
val closure_kind_of_yojson : Yojson.Safe.t -> closure_kind
val safe_yojson_of_command_for__null :
command_for__null ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_command_for__null_of_yojson :
Yojson.Safe.t ->
(command_for__null, Base.Error.t) Base.Result.t
val yojson_of_command_for__null : command_for__null -> Yojson.Safe.t
val command_for__null_of_yojson : Yojson.Safe.t -> command_for__null
val safe_yojson_of_comment_kind :
comment_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_comment_kind_of_yojson :
Yojson.Safe.t ->
(comment_kind, Base.Error.t) Base.Result.t
val yojson_of_comment_kind : comment_kind -> Yojson.Safe.t
val comment_kind_of_yojson : Yojson.Safe.t -> comment_kind
val safe_yojson_of_const_arg_kind_for__decorated_for__expr_kind :
const_arg_kind_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_const_arg_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(const_arg_kind_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_const_arg_kind_for__decorated_for__expr_kind :
const_arg_kind_for__decorated_for__expr_kind ->
Yojson.Safe.t
val const_arg_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
const_arg_kind_for__decorated_for__expr_kind
val safe_yojson_of_const_arg_for__decorated_for__expr_kind :
const_arg_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_const_arg_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(const_arg_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_const_arg_for__decorated_for__expr_kind :
const_arg_for__decorated_for__expr_kind ->
Yojson.Safe.t
val const_arg_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
const_arg_for__decorated_for__expr_kind
val safe_yojson_of_constant_expr_kind :
constant_expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_constant_expr_kind_of_yojson :
Yojson.Safe.t ->
(constant_expr_kind, Base.Error.t) Base.Result.t
val yojson_of_constant_expr_kind : constant_expr_kind -> Yojson.Safe.t
val constant_expr_kind_of_yojson : Yojson.Safe.t -> constant_expr_kind
val safe_yojson_of_constant_field_expr :
constant_field_expr ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_constant_field_expr_of_yojson :
Yojson.Safe.t ->
(constant_field_expr, Base.Error.t) Base.Result.t
val yojson_of_constant_field_expr : constant_field_expr -> Yojson.Safe.t
val constant_field_expr_of_yojson : Yojson.Safe.t -> constant_field_expr
val safe_yojson_of_constant_int :
constant_int ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_constant_int_of_yojson :
Yojson.Safe.t ->
(constant_int, Base.Error.t) Base.Result.t
val yojson_of_constant_int : constant_int -> Yojson.Safe.t
val constant_int_of_yojson : Yojson.Safe.t -> constant_int
val safe_yojson_of_constant_literal :
constant_literal ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_constant_literal_of_yojson :
Yojson.Safe.t ->
(constant_literal, Base.Error.t) Base.Result.t
val yojson_of_constant_literal : constant_literal -> Yojson.Safe.t
val constant_literal_of_yojson : Yojson.Safe.t -> constant_literal
val safe_yojson_of_constness :
constness ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_constness_of_yojson :
Yojson.Safe.t ->
(constness, Base.Error.t) Base.Result.t
val yojson_of_constness : constness -> Yojson.Safe.t
val constness_of_yojson : Yojson.Safe.t -> constness
val safe_yojson_of_ctor_kind :
ctor_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ctor_kind_of_yojson :
Yojson.Safe.t ->
(ctor_kind, Base.Error.t) Base.Result.t
val yojson_of_ctor_kind : ctor_kind -> Yojson.Safe.t
val ctor_kind_of_yojson : Yojson.Safe.t -> ctor_kind
val safe_yojson_of_ctor_of :
ctor_of ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ctor_of_of_yojson :
Yojson.Safe.t ->
(ctor_of, Base.Error.t) Base.Result.t
val yojson_of_ctor_of : ctor_of -> Yojson.Safe.t
val ctor_of_of_yojson : Yojson.Safe.t -> ctor_of
val safe_yojson_of_debug_engine_mode :
debug_engine_mode ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_debug_engine_mode_of_yojson :
Yojson.Safe.t ->
(debug_engine_mode, Base.Error.t) Base.Result.t
val yojson_of_debug_engine_mode : debug_engine_mode -> Yojson.Safe.t
val debug_engine_mode_of_yojson : Yojson.Safe.t -> debug_engine_mode
val safe_yojson_of_decorated_for__constant_expr_kind :
decorated_for__constant_expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_decorated_for__constant_expr_kind_of_yojson :
Yojson.Safe.t ->
(decorated_for__constant_expr_kind, Base.Error.t) Base.Result.t
val yojson_of_decorated_for__constant_expr_kind :
decorated_for__constant_expr_kind ->
Yojson.Safe.t
val decorated_for__constant_expr_kind_of_yojson :
Yojson.Safe.t ->
decorated_for__constant_expr_kind
val safe_yojson_of_decorated_for__expr_kind :
decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_decorated_for__expr_kind :
decorated_for__expr_kind ->
Yojson.Safe.t
val decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
decorated_for__expr_kind
val safe_yojson_of_decorated_for__pat_kind :
decorated_for__pat_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_decorated_for__pat_kind_of_yojson :
Yojson.Safe.t ->
(decorated_for__pat_kind, Base.Error.t) Base.Result.t
val yojson_of_decorated_for__pat_kind :
decorated_for__pat_kind ->
Yojson.Safe.t
val decorated_for__pat_kind_of_yojson :
Yojson.Safe.t ->
decorated_for__pat_kind
val safe_yojson_of_def_id :
def_id ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_def_id_of_yojson :
Yojson.Safe.t ->
(def_id, Base.Error.t) Base.Result.t
val yojson_of_def_id : def_id -> Yojson.Safe.t
val def_id_of_yojson : Yojson.Safe.t -> def_id
val safe_yojson_of_def_id_contents :
def_id_contents ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_def_id_contents_of_yojson :
Yojson.Safe.t ->
(def_id_contents, Base.Error.t) Base.Result.t
val yojson_of_def_id_contents : def_id_contents -> Yojson.Safe.t
val def_id_contents_of_yojson : Yojson.Safe.t -> def_id_contents
val safe_yojson_of_def_kind :
def_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_def_kind_of_yojson :
Yojson.Safe.t ->
(def_kind, Base.Error.t) Base.Result.t
val yojson_of_def_kind : def_kind -> Yojson.Safe.t
val def_kind_of_yojson : Yojson.Safe.t -> def_kind
val safe_yojson_of_def_path_item :
def_path_item ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_def_path_item_of_yojson :
Yojson.Safe.t ->
(def_path_item, Base.Error.t) Base.Result.t
val yojson_of_def_path_item : def_path_item -> Yojson.Safe.t
val def_path_item_of_yojson : Yojson.Safe.t -> def_path_item
val safe_yojson_of_defaultness :
defaultness ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_defaultness_of_yojson :
Yojson.Safe.t ->
(defaultness, Base.Error.t) Base.Result.t
val yojson_of_defaultness : defaultness -> Yojson.Safe.t
val defaultness_of_yojson : Yojson.Safe.t -> defaultness
val safe_yojson_of_delim_args :
delim_args ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_delim_args_of_yojson :
Yojson.Safe.t ->
(delim_args, Base.Error.t) Base.Result.t
val yojson_of_delim_args : delim_args -> Yojson.Safe.t
val delim_args_of_yojson : Yojson.Safe.t -> delim_args
val safe_yojson_of_delim_span :
delim_span ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_delim_span_of_yojson :
Yojson.Safe.t ->
(delim_span, Base.Error.t) Base.Result.t
val yojson_of_delim_span : delim_span -> Yojson.Safe.t
val delim_span_of_yojson : Yojson.Safe.t -> delim_span
val safe_yojson_of_delimiter :
delimiter ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_delimiter_of_yojson :
Yojson.Safe.t ->
(delimiter, Base.Error.t) Base.Result.t
val yojson_of_delimiter : delimiter -> Yojson.Safe.t
val delimiter_of_yojson : Yojson.Safe.t -> delimiter
val safe_yojson_of_deps_kind :
deps_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_deps_kind_of_yojson :
Yojson.Safe.t ->
(deps_kind, Base.Error.t) Base.Result.t
val yojson_of_deps_kind : deps_kind -> Yojson.Safe.t
val deps_kind_of_yojson : Yojson.Safe.t -> deps_kind
val safe_yojson_of_desugaring_kind :
desugaring_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_desugaring_kind_of_yojson :
Yojson.Safe.t ->
(desugaring_kind, Base.Error.t) Base.Result.t
val yojson_of_desugaring_kind : desugaring_kind -> Yojson.Safe.t
val desugaring_kind_of_yojson : Yojson.Safe.t -> desugaring_kind
val safe_yojson_of_diagnostics :
diagnostics ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_diagnostics_of_yojson :
Yojson.Safe.t ->
(diagnostics, Base.Error.t) Base.Result.t
val yojson_of_diagnostics : diagnostics -> Yojson.Safe.t
val diagnostics_of_yojson : Yojson.Safe.t -> diagnostics
val safe_yojson_of_disambiguated_def_path_item :
disambiguated_def_path_item ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_disambiguated_def_path_item_of_yojson :
Yojson.Safe.t ->
(disambiguated_def_path_item, Base.Error.t) Base.Result.t
val yojson_of_disambiguated_def_path_item :
disambiguated_def_path_item ->
Yojson.Safe.t
val disambiguated_def_path_item_of_yojson :
Yojson.Safe.t ->
disambiguated_def_path_item
val safe_yojson_of_discriminant_definition :
discriminant_definition ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_discriminant_definition_of_yojson :
Yojson.Safe.t ->
(discriminant_definition, Base.Error.t) Base.Result.t
val yojson_of_discriminant_definition :
discriminant_definition ->
Yojson.Safe.t
val discriminant_definition_of_yojson :
Yojson.Safe.t ->
discriminant_definition
val safe_yojson_of_dyn_kind :
dyn_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_dyn_kind_of_yojson :
Yojson.Safe.t ->
(dyn_kind, Base.Error.t) Base.Result.t
val yojson_of_dyn_kind : dyn_kind -> Yojson.Safe.t
val dyn_kind_of_yojson : Yojson.Safe.t -> dyn_kind
val safe_yojson_of_early_param_region :
early_param_region ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_early_param_region_of_yojson :
Yojson.Safe.t ->
(early_param_region, Base.Error.t) Base.Result.t
val yojson_of_early_param_region : early_param_region -> Yojson.Safe.t
val early_param_region_of_yojson : Yojson.Safe.t -> early_param_region
val safe_yojson_of_edition :
edition ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_edition_of_yojson :
Yojson.Safe.t ->
(edition, Base.Error.t) Base.Result.t
val yojson_of_edition : edition -> Yojson.Safe.t
val edition_of_yojson : Yojson.Safe.t -> edition
val safe_yojson_of_empty_args_extension :
empty_args_extension ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_empty_args_extension_of_yojson :
Yojson.Safe.t ->
(empty_args_extension, Base.Error.t) Base.Result.t
val yojson_of_empty_args_extension : empty_args_extension -> Yojson.Safe.t
val empty_args_extension_of_yojson : Yojson.Safe.t -> empty_args_extension
val safe_yojson_of_empty_subcommand_extension :
empty_subcommand_extension ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_empty_subcommand_extension_of_yojson :
Yojson.Safe.t ->
(empty_subcommand_extension, Base.Error.t) Base.Result.t
val yojson_of_empty_subcommand_extension :
empty_subcommand_extension ->
Yojson.Safe.t
val empty_subcommand_extension_of_yojson :
Yojson.Safe.t ->
empty_subcommand_extension
val safe_yojson_of_engine_options :
engine_options ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_engine_options_of_yojson :
Yojson.Safe.t ->
(engine_options, Base.Error.t) Base.Result.t
val yojson_of_engine_options : engine_options -> Yojson.Safe.t
val engine_options_of_yojson : Yojson.Safe.t -> engine_options
val safe_yojson_of_error_guaranteed :
error_guaranteed ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_error_guaranteed_of_yojson :
Yojson.Safe.t ->
(error_guaranteed, Base.Error.t) Base.Result.t
val yojson_of_error_guaranteed : error_guaranteed -> Yojson.Safe.t
val error_guaranteed_of_yojson : Yojson.Safe.t -> error_guaranteed
val safe_yojson_of_existential_predicate :
existential_predicate ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_existential_predicate_of_yojson :
Yojson.Safe.t ->
(existential_predicate, Base.Error.t) Base.Result.t
val yojson_of_existential_predicate : existential_predicate -> Yojson.Safe.t
val existential_predicate_of_yojson : Yojson.Safe.t -> existential_predicate
val safe_yojson_of_existential_projection :
existential_projection ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_existential_projection_of_yojson :
Yojson.Safe.t ->
(existential_projection, Base.Error.t) Base.Result.t
val yojson_of_existential_projection : existential_projection -> Yojson.Safe.t
val existential_projection_of_yojson : Yojson.Safe.t -> existential_projection
val safe_yojson_of_existential_trait_ref :
existential_trait_ref ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_existential_trait_ref_of_yojson :
Yojson.Safe.t ->
(existential_trait_ref, Base.Error.t) Base.Result.t
val yojson_of_existential_trait_ref : existential_trait_ref -> Yojson.Safe.t
val existential_trait_ref_of_yojson : Yojson.Safe.t -> existential_trait_ref
val safe_yojson_of_expn_data :
expn_data ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_expn_data_of_yojson :
Yojson.Safe.t ->
(expn_data, Base.Error.t) Base.Result.t
val yojson_of_expn_data : expn_data -> Yojson.Safe.t
val expn_data_of_yojson : Yojson.Safe.t -> expn_data
val safe_yojson_of_expn_kind :
expn_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_expn_kind_of_yojson :
Yojson.Safe.t ->
(expn_kind, Base.Error.t) Base.Result.t
val yojson_of_expn_kind : expn_kind -> Yojson.Safe.t
val expn_kind_of_yojson : Yojson.Safe.t -> expn_kind
val safe_yojson_of_export_body_kind :
export_body_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_export_body_kind_of_yojson :
Yojson.Safe.t ->
(export_body_kind, Base.Error.t) Base.Result.t
val yojson_of_export_body_kind : export_body_kind -> Yojson.Safe.t
val export_body_kind_of_yojson : Yojson.Safe.t -> export_body_kind
val safe_yojson_of_expr_kind :
expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_expr_kind_of_yojson :
Yojson.Safe.t ->
(expr_kind, Base.Error.t) Base.Result.t
val yojson_of_expr_kind : expr_kind -> Yojson.Safe.t
val expr_kind_of_yojson : Yojson.Safe.t -> expr_kind
val safe_yojson_of_extensible_options_for__null :
extensible_options_for__null ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_extensible_options_for__null_of_yojson :
Yojson.Safe.t ->
(extensible_options_for__null, Base.Error.t) Base.Result.t
val yojson_of_extensible_options_for__null :
extensible_options_for__null ->
Yojson.Safe.t
val extensible_options_for__null_of_yojson :
Yojson.Safe.t ->
extensible_options_for__null
val safe_yojson_of_f_star_options_for__null :
f_star_options_for__null ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_f_star_options_for__null_of_yojson :
Yojson.Safe.t ->
(f_star_options_for__null, Base.Error.t) Base.Result.t
val yojson_of_f_star_options_for__null :
f_star_options_for__null ->
Yojson.Safe.t
val f_star_options_for__null_of_yojson :
Yojson.Safe.t ->
f_star_options_for__null
val safe_yojson_of_fake_borrow_kind :
fake_borrow_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_fake_borrow_kind_of_yojson :
Yojson.Safe.t ->
(fake_borrow_kind, Base.Error.t) Base.Result.t
val yojson_of_fake_borrow_kind : fake_borrow_kind -> Yojson.Safe.t
val fake_borrow_kind_of_yojson : Yojson.Safe.t -> fake_borrow_kind
val safe_yojson_of_field_expr :
field_expr ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_field_expr_of_yojson :
Yojson.Safe.t ->
(field_expr, Base.Error.t) Base.Result.t
val yojson_of_field_expr : field_expr -> Yojson.Safe.t
val field_expr_of_yojson : Yojson.Safe.t -> field_expr
val safe_yojson_of_field_pat :
field_pat ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_field_pat_of_yojson :
Yojson.Safe.t ->
(field_pat, Base.Error.t) Base.Result.t
val yojson_of_field_pat : field_pat -> Yojson.Safe.t
val field_pat_of_yojson : Yojson.Safe.t -> field_pat
val safe_yojson_of_file : file -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_file_of_yojson : Yojson.Safe.t -> (file, Base.Error.t) Base.Result.t
val yojson_of_file : file -> Yojson.Safe.t
val file_of_yojson : Yojson.Safe.t -> file
val safe_yojson_of_file_name :
file_name ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_file_name_of_yojson :
Yojson.Safe.t ->
(file_name, Base.Error.t) Base.Result.t
val yojson_of_file_name : file_name -> Yojson.Safe.t
val file_name_of_yojson : Yojson.Safe.t -> file_name
val safe_yojson_of_float_ty :
float_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_float_ty_of_yojson :
Yojson.Safe.t ->
(float_ty, Base.Error.t) Base.Result.t
val yojson_of_float_ty : float_ty -> Yojson.Safe.t
val float_ty_of_yojson : Yojson.Safe.t -> float_ty
val safe_yojson_of_fn_decl :
fn_decl ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_fn_decl_of_yojson :
Yojson.Safe.t ->
(fn_decl, Base.Error.t) Base.Result.t
val yojson_of_fn_decl : fn_decl -> Yojson.Safe.t
val fn_decl_of_yojson : Yojson.Safe.t -> fn_decl
val safe_yojson_of_fn_def_for__decorated_for__expr_kind :
fn_def_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_fn_def_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(fn_def_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_fn_def_for__decorated_for__expr_kind :
fn_def_for__decorated_for__expr_kind ->
Yojson.Safe.t
val fn_def_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
fn_def_for__decorated_for__expr_kind
val safe_yojson_of_fn_header :
fn_header ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_fn_header_of_yojson :
Yojson.Safe.t ->
(fn_header, Base.Error.t) Base.Result.t
val yojson_of_fn_header : fn_header -> Yojson.Safe.t
val fn_header_of_yojson : Yojson.Safe.t -> fn_header
val safe_yojson_of_fn_ret_ty :
fn_ret_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_fn_ret_ty_of_yojson :
Yojson.Safe.t ->
(fn_ret_ty, Base.Error.t) Base.Result.t
val yojson_of_fn_ret_ty : fn_ret_ty -> Yojson.Safe.t
val fn_ret_ty_of_yojson : Yojson.Safe.t -> fn_ret_ty
val safe_yojson_of_fn_sig :
fn_sig ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_fn_sig_of_yojson :
Yojson.Safe.t ->
(fn_sig, Base.Error.t) Base.Result.t
val yojson_of_fn_sig : fn_sig -> Yojson.Safe.t
val fn_sig_of_yojson : Yojson.Safe.t -> fn_sig
val safe_yojson_of_force_cargo_build :
force_cargo_build ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_force_cargo_build_of_yojson :
Yojson.Safe.t ->
(force_cargo_build, Base.Error.t) Base.Result.t
val yojson_of_force_cargo_build : force_cargo_build -> Yojson.Safe.t
val force_cargo_build_of_yojson : Yojson.Safe.t -> force_cargo_build
val safe_yojson_of_foreign_item_kind_for__decorated_for__expr_kind :
foreign_item_kind_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_foreign_item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(foreign_item_kind_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_foreign_item_kind_for__decorated_for__expr_kind :
foreign_item_kind_for__decorated_for__expr_kind ->
Yojson.Safe.t
val foreign_item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
foreign_item_kind_for__decorated_for__expr_kind
val safe_yojson_of_foreign_item_for__decorated_for__expr_kind :
foreign_item_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_foreign_item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(foreign_item_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_foreign_item_for__decorated_for__expr_kind :
foreign_item_for__decorated_for__expr_kind ->
Yojson.Safe.t
val foreign_item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
foreign_item_for__decorated_for__expr_kind
val safe_yojson_of_from_engine :
from_engine ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_from_engine_of_yojson :
Yojson.Safe.t ->
(from_engine, Base.Error.t) Base.Result.t
val yojson_of_from_engine : from_engine -> Yojson.Safe.t
val from_engine_of_yojson : Yojson.Safe.t -> from_engine
val safe_yojson_of_fru_info :
fru_info ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_fru_info_of_yojson :
Yojson.Safe.t ->
(fru_info, Base.Error.t) Base.Result.t
val yojson_of_fru_info : fru_info -> Yojson.Safe.t
val fru_info_of_yojson : Yojson.Safe.t -> fru_info
val safe_yojson_of_generic_arg :
generic_arg ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_generic_arg_of_yojson :
Yojson.Safe.t ->
(generic_arg, Base.Error.t) Base.Result.t
val yojson_of_generic_arg : generic_arg -> Yojson.Safe.t
val generic_arg_of_yojson : Yojson.Safe.t -> generic_arg
val safe_yojson_of_generic_param_def :
generic_param_def ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_generic_param_def_of_yojson :
Yojson.Safe.t ->
(generic_param_def, Base.Error.t) Base.Result.t
val yojson_of_generic_param_def : generic_param_def -> Yojson.Safe.t
val generic_param_def_of_yojson : Yojson.Safe.t -> generic_param_def
val safe_yojson_of_generic_param_def_kind :
generic_param_def_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_generic_param_def_kind_of_yojson :
Yojson.Safe.t ->
(generic_param_def_kind, Base.Error.t) Base.Result.t
val yojson_of_generic_param_def_kind : generic_param_def_kind -> Yojson.Safe.t
val generic_param_def_kind_of_yojson : Yojson.Safe.t -> generic_param_def_kind
val safe_yojson_of_generic_param_kind_for__decorated_for__expr_kind :
generic_param_kind_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_generic_param_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(generic_param_kind_for__decorated_for__expr_kind, Base.Error.t)
Base.Result.t
val yojson_of_generic_param_kind_for__decorated_for__expr_kind :
generic_param_kind_for__decorated_for__expr_kind ->
Yojson.Safe.t
val generic_param_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
generic_param_kind_for__decorated_for__expr_kind
val safe_yojson_of_generic_param_for__decorated_for__expr_kind :
generic_param_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_generic_param_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(generic_param_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_generic_param_for__decorated_for__expr_kind :
generic_param_for__decorated_for__expr_kind ->
Yojson.Safe.t
val generic_param_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
generic_param_for__decorated_for__expr_kind
val safe_yojson_of_generics_for__decorated_for__expr_kind :
generics_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_generics_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(generics_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_generics_for__decorated_for__expr_kind :
generics_for__decorated_for__expr_kind ->
Yojson.Safe.t
val generics_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
generics_for__decorated_for__expr_kind
val safe_yojson_of_glob : glob -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_glob_of_yojson : Yojson.Safe.t -> (glob, Base.Error.t) Base.Result.t
val yojson_of_glob : glob -> Yojson.Safe.t
val glob_of_yojson : Yojson.Safe.t -> glob
val safe_yojson_of_ha_assoc_role :
ha_assoc_role ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ha_assoc_role_of_yojson :
Yojson.Safe.t ->
(ha_assoc_role, Base.Error.t) Base.Result.t
val yojson_of_ha_assoc_role : ha_assoc_role -> Yojson.Safe.t
val ha_assoc_role_of_yojson : Yojson.Safe.t -> ha_assoc_role
val safe_yojson_of_ha_item_quote :
ha_item_quote ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ha_item_quote_of_yojson :
Yojson.Safe.t ->
(ha_item_quote, Base.Error.t) Base.Result.t
val yojson_of_ha_item_quote : ha_item_quote -> Yojson.Safe.t
val ha_item_quote_of_yojson : Yojson.Safe.t -> ha_item_quote
val safe_yojson_of_ha_item_quote_f_star_opts :
ha_item_quote_f_star_opts ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ha_item_quote_f_star_opts_of_yojson :
Yojson.Safe.t ->
(ha_item_quote_f_star_opts, Base.Error.t) Base.Result.t
val yojson_of_ha_item_quote_f_star_opts :
ha_item_quote_f_star_opts ->
Yojson.Safe.t
val ha_item_quote_f_star_opts_of_yojson :
Yojson.Safe.t ->
ha_item_quote_f_star_opts
val safe_yojson_of_ha_item_quote_position :
ha_item_quote_position ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ha_item_quote_position_of_yojson :
Yojson.Safe.t ->
(ha_item_quote_position, Base.Error.t) Base.Result.t
val yojson_of_ha_item_quote_position : ha_item_quote_position -> Yojson.Safe.t
val ha_item_quote_position_of_yojson : Yojson.Safe.t -> ha_item_quote_position
val safe_yojson_of_ha_item_status :
ha_item_status ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ha_item_status_of_yojson :
Yojson.Safe.t ->
(ha_item_status, Base.Error.t) Base.Result.t
val yojson_of_ha_item_status : ha_item_status -> Yojson.Safe.t
val ha_item_status_of_yojson : Yojson.Safe.t -> ha_item_status
val safe_yojson_of_ha_payload :
ha_payload ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ha_payload_of_yojson :
Yojson.Safe.t ->
(ha_payload, Base.Error.t) Base.Result.t
val yojson_of_ha_payload : ha_payload -> Yojson.Safe.t
val ha_payload_of_yojson : Yojson.Safe.t -> ha_payload
val safe_yojson_of_ha_uid :
ha_uid ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ha_uid_of_yojson :
Yojson.Safe.t ->
(ha_uid, Base.Error.t) Base.Result.t
val yojson_of_ha_uid : ha_uid -> Yojson.Safe.t
val ha_uid_of_yojson : Yojson.Safe.t -> ha_uid
val safe_yojson_of_hir_field_def :
hir_field_def ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_hir_field_def_of_yojson :
Yojson.Safe.t ->
(hir_field_def, Base.Error.t) Base.Result.t
val yojson_of_hir_field_def : hir_field_def -> Yojson.Safe.t
val hir_field_def_of_yojson : Yojson.Safe.t -> hir_field_def
val safe_yojson_of_hir_generic_args :
hir_generic_args ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_hir_generic_args_of_yojson :
Yojson.Safe.t ->
(hir_generic_args, Base.Error.t) Base.Result.t
val yojson_of_hir_generic_args : hir_generic_args -> Yojson.Safe.t
val hir_generic_args_of_yojson : Yojson.Safe.t -> hir_generic_args
val safe_yojson_of_hir_id :
hir_id ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_hir_id_of_yojson :
Yojson.Safe.t ->
(hir_id, Base.Error.t) Base.Result.t
val yojson_of_hir_id : hir_id -> Yojson.Safe.t
val hir_id_of_yojson : Yojson.Safe.t -> hir_id
val safe_yojson_of_impl_expr :
impl_expr ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_expr_of_yojson :
Yojson.Safe.t ->
(impl_expr, Base.Error.t) Base.Result.t
val yojson_of_impl_expr : impl_expr -> Yojson.Safe.t
val impl_expr_of_yojson : Yojson.Safe.t -> impl_expr
val safe_yojson_of_impl_expr_atom :
impl_expr_atom ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_expr_atom_of_yojson :
Yojson.Safe.t ->
(impl_expr_atom, Base.Error.t) Base.Result.t
val yojson_of_impl_expr_atom : impl_expr_atom -> Yojson.Safe.t
val impl_expr_atom_of_yojson : Yojson.Safe.t -> impl_expr_atom
val safe_yojson_of_impl_expr_path_chunk :
impl_expr_path_chunk ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_expr_path_chunk_of_yojson :
Yojson.Safe.t ->
(impl_expr_path_chunk, Base.Error.t) Base.Result.t
val yojson_of_impl_expr_path_chunk : impl_expr_path_chunk -> Yojson.Safe.t
val impl_expr_path_chunk_of_yojson : Yojson.Safe.t -> impl_expr_path_chunk
val safe_yojson_of_impl_infos :
impl_infos ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_infos_of_yojson :
Yojson.Safe.t ->
(impl_infos, Base.Error.t) Base.Result.t
val yojson_of_impl_infos : impl_infos -> Yojson.Safe.t
val impl_infos_of_yojson : Yojson.Safe.t -> impl_infos
val safe_yojson_of_impl_item_kind_for__decorated_for__expr_kind :
impl_item_kind_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(impl_item_kind_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_impl_item_kind_for__decorated_for__expr_kind :
impl_item_kind_for__decorated_for__expr_kind ->
Yojson.Safe.t
val impl_item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
impl_item_kind_for__decorated_for__expr_kind
val safe_yojson_of_impl_item_for__decorated_for__expr_kind :
impl_item_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(impl_item_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_impl_item_for__decorated_for__expr_kind :
impl_item_for__decorated_for__expr_kind ->
Yojson.Safe.t
val impl_item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
impl_item_for__decorated_for__expr_kind
val safe_yojson_of_impl_polarity :
impl_polarity ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_polarity_of_yojson :
Yojson.Safe.t ->
(impl_polarity, Base.Error.t) Base.Result.t
val yojson_of_impl_polarity : impl_polarity -> Yojson.Safe.t
val impl_polarity_of_yojson : Yojson.Safe.t -> impl_polarity
val safe_yojson_of_impl_trait_in_trait_data :
impl_trait_in_trait_data ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_trait_in_trait_data_of_yojson :
Yojson.Safe.t ->
(impl_trait_in_trait_data, Base.Error.t) Base.Result.t
val yojson_of_impl_trait_in_trait_data :
impl_trait_in_trait_data ->
Yojson.Safe.t
val impl_trait_in_trait_data_of_yojson :
Yojson.Safe.t ->
impl_trait_in_trait_data
val safe_yojson_of_impl_for__decorated_for__expr_kind :
impl_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_impl_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(impl_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_impl_for__decorated_for__expr_kind :
impl_for__decorated_for__expr_kind ->
Yojson.Safe.t
val impl_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
impl_for__decorated_for__expr_kind
val safe_yojson_of_implicit_self_kind :
implicit_self_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_implicit_self_kind_of_yojson :
Yojson.Safe.t ->
(implicit_self_kind, Base.Error.t) Base.Result.t
val yojson_of_implicit_self_kind : implicit_self_kind -> Yojson.Safe.t
val implicit_self_kind_of_yojson : Yojson.Safe.t -> implicit_self_kind
val safe_yojson_of_inclusion_clause :
inclusion_clause ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_inclusion_clause_of_yojson :
Yojson.Safe.t ->
(inclusion_clause, Base.Error.t) Base.Result.t
val yojson_of_inclusion_clause : inclusion_clause -> Yojson.Safe.t
val inclusion_clause_of_yojson : Yojson.Safe.t -> inclusion_clause
val safe_yojson_of_inclusion_kind :
inclusion_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_inclusion_kind_of_yojson :
Yojson.Safe.t ->
(inclusion_kind, Base.Error.t) Base.Result.t
val yojson_of_inclusion_kind : inclusion_kind -> Yojson.Safe.t
val inclusion_kind_of_yojson : Yojson.Safe.t -> inclusion_kind
val safe_yojson_of_infer_ty :
infer_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_infer_ty_of_yojson :
Yojson.Safe.t ->
(infer_ty, Base.Error.t) Base.Result.t
val yojson_of_infer_ty : infer_ty -> Yojson.Safe.t
val infer_ty_of_yojson : Yojson.Safe.t -> infer_ty
val safe_yojson_of_inline_asm :
inline_asm ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_inline_asm_of_yojson :
Yojson.Safe.t ->
(inline_asm, Base.Error.t) Base.Result.t
val yojson_of_inline_asm : inline_asm -> Yojson.Safe.t
val inline_asm_of_yojson : Yojson.Safe.t -> inline_asm
val safe_yojson_of_int_ty :
int_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_int_ty_of_yojson :
Yojson.Safe.t ->
(int_ty, Base.Error.t) Base.Result.t
val yojson_of_int_ty : int_ty -> Yojson.Safe.t
val int_ty_of_yojson : Yojson.Safe.t -> int_ty
val safe_yojson_of_integer_type :
integer_type ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_integer_type_of_yojson :
Yojson.Safe.t ->
(integer_type, Base.Error.t) Base.Result.t
val yojson_of_integer_type : integer_type -> Yojson.Safe.t
val integer_type_of_yojson : Yojson.Safe.t -> integer_type
val safe_yojson_of_is_async :
is_async ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_is_async_of_yojson :
Yojson.Safe.t ->
(is_async, Base.Error.t) Base.Result.t
val yojson_of_is_async : is_async -> Yojson.Safe.t
val is_async_of_yojson : Yojson.Safe.t -> is_async
val safe_yojson_of_is_auto :
is_auto ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_is_auto_of_yojson :
Yojson.Safe.t ->
(is_auto, Base.Error.t) Base.Result.t
val yojson_of_is_auto : is_auto -> Yojson.Safe.t
val is_auto_of_yojson : Yojson.Safe.t -> is_auto
val safe_yojson_of_item_attributes :
item_attributes ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_item_attributes_of_yojson :
Yojson.Safe.t ->
(item_attributes, Base.Error.t) Base.Result.t
val yojson_of_item_attributes : item_attributes -> Yojson.Safe.t
val item_attributes_of_yojson : Yojson.Safe.t -> item_attributes
val safe_yojson_of_item_kind_for__decorated_for__expr_kind :
item_kind_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(item_kind_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_item_kind_for__decorated_for__expr_kind :
item_kind_for__decorated_for__expr_kind ->
Yojson.Safe.t
val item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
item_kind_for__decorated_for__expr_kind
val safe_yojson_of_item_for__decorated_for__expr_kind :
item_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(item_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_item_for__decorated_for__expr_kind :
item_for__decorated_for__expr_kind ->
Yojson.Safe.t
val item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
item_for__decorated_for__expr_kind
val safe_yojson_of_kind : kind -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_kind_of_yojson : Yojson.Safe.t -> (kind, Base.Error.t) Base.Result.t
val yojson_of_kind : kind -> Yojson.Safe.t
val kind_of_yojson : Yojson.Safe.t -> kind
val safe_yojson_of_late_param_region :
late_param_region ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_late_param_region_of_yojson :
Yojson.Safe.t ->
(late_param_region, Base.Error.t) Base.Result.t
val yojson_of_late_param_region : late_param_region -> Yojson.Safe.t
val late_param_region_of_yojson : Yojson.Safe.t -> late_param_region
val safe_yojson_of_lifetime_param_kind :
lifetime_param_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_lifetime_param_kind_of_yojson :
Yojson.Safe.t ->
(lifetime_param_kind, Base.Error.t) Base.Result.t
val yojson_of_lifetime_param_kind : lifetime_param_kind -> Yojson.Safe.t
val lifetime_param_kind_of_yojson : Yojson.Safe.t -> lifetime_param_kind
val safe_yojson_of_lint_level :
lint_level ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_lint_level_of_yojson :
Yojson.Safe.t ->
(lint_level, Base.Error.t) Base.Result.t
val yojson_of_lint_level : lint_level -> Yojson.Safe.t
val lint_level_of_yojson : Yojson.Safe.t -> lint_level
val safe_yojson_of_lit_float_type :
lit_float_type ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_lit_float_type_of_yojson :
Yojson.Safe.t ->
(lit_float_type, Base.Error.t) Base.Result.t
val yojson_of_lit_float_type : lit_float_type -> Yojson.Safe.t
val lit_float_type_of_yojson : Yojson.Safe.t -> lit_float_type
val safe_yojson_of_lit_int_type :
lit_int_type ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_lit_int_type_of_yojson :
Yojson.Safe.t ->
(lit_int_type, Base.Error.t) Base.Result.t
val yojson_of_lit_int_type : lit_int_type -> Yojson.Safe.t
val lit_int_type_of_yojson : Yojson.Safe.t -> lit_int_type
val safe_yojson_of_lit_kind :
lit_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_lit_kind_of_yojson :
Yojson.Safe.t ->
(lit_kind, Base.Error.t) Base.Result.t
val yojson_of_lit_kind : lit_kind -> Yojson.Safe.t
val lit_kind_of_yojson : Yojson.Safe.t -> lit_kind
val safe_yojson_of_loc : loc -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_loc_of_yojson : Yojson.Safe.t -> (loc, Base.Error.t) Base.Result.t
val yojson_of_loc : loc -> Yojson.Safe.t
val loc_of_yojson : Yojson.Safe.t -> loc
val safe_yojson_of_local_ident :
local_ident ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_local_ident_of_yojson :
Yojson.Safe.t ->
(local_ident, Base.Error.t) Base.Result.t
val yojson_of_local_ident : local_ident -> Yojson.Safe.t
val local_ident_of_yojson : Yojson.Safe.t -> local_ident
val safe_yojson_of_logical_op :
logical_op ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_logical_op_of_yojson :
Yojson.Safe.t ->
(logical_op, Base.Error.t) Base.Result.t
val yojson_of_logical_op : logical_op -> Yojson.Safe.t
val logical_op_of_yojson : Yojson.Safe.t -> logical_op
val safe_yojson_of_macro_def :
macro_def ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_macro_def_of_yojson :
Yojson.Safe.t ->
(macro_def, Base.Error.t) Base.Result.t
val yojson_of_macro_def : macro_def -> Yojson.Safe.t
val macro_def_of_yojson : Yojson.Safe.t -> macro_def
val safe_yojson_of_macro_invokation :
macro_invokation ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_macro_invokation_of_yojson :
Yojson.Safe.t ->
(macro_invokation, Base.Error.t) Base.Result.t
val yojson_of_macro_invokation : macro_invokation -> Yojson.Safe.t
val macro_invokation_of_yojson : Yojson.Safe.t -> macro_invokation
val safe_yojson_of_macro_kind :
macro_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_macro_kind_of_yojson :
Yojson.Safe.t ->
(macro_kind, Base.Error.t) Base.Result.t
val yojson_of_macro_kind : macro_kind -> Yojson.Safe.t
val macro_kind_of_yojson : Yojson.Safe.t -> macro_kind
val safe_yojson_of_message_format :
message_format ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_message_format_of_yojson :
Yojson.Safe.t ->
(message_format, Base.Error.t) Base.Result.t
val yojson_of_message_format : message_format -> Yojson.Safe.t
val message_format_of_yojson : Yojson.Safe.t -> message_format
val safe_yojson_of_meta_item_lit :
meta_item_lit ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_meta_item_lit_of_yojson :
Yojson.Safe.t ->
(meta_item_lit, Base.Error.t) Base.Result.t
val yojson_of_meta_item_lit : meta_item_lit -> Yojson.Safe.t
val meta_item_lit_of_yojson : Yojson.Safe.t -> meta_item_lit
val safe_yojson_of_missing_lifetime_kind :
missing_lifetime_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_missing_lifetime_kind_of_yojson :
Yojson.Safe.t ->
(missing_lifetime_kind, Base.Error.t) Base.Result.t
val yojson_of_missing_lifetime_kind : missing_lifetime_kind -> Yojson.Safe.t
val missing_lifetime_kind_of_yojson : Yojson.Safe.t -> missing_lifetime_kind
val safe_yojson_of_movability :
movability ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_movability_of_yojson :
Yojson.Safe.t ->
(movability, Base.Error.t) Base.Result.t
val yojson_of_movability : movability -> Yojson.Safe.t
val movability_of_yojson : Yojson.Safe.t -> movability
val safe_yojson_of_mut_borrow_kind :
mut_borrow_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_mut_borrow_kind_of_yojson :
Yojson.Safe.t ->
(mut_borrow_kind, Base.Error.t) Base.Result.t
val yojson_of_mut_borrow_kind : mut_borrow_kind -> Yojson.Safe.t
val mut_borrow_kind_of_yojson : Yojson.Safe.t -> mut_borrow_kind
val safe_yojson_of_namespace :
namespace ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_namespace_of_yojson :
Yojson.Safe.t ->
(namespace, Base.Error.t) Base.Result.t
val yojson_of_namespace : namespace -> Yojson.Safe.t
val namespace_of_yojson : Yojson.Safe.t -> namespace
val safe_yojson_of_namespace_chunk :
namespace_chunk ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_namespace_chunk_of_yojson :
Yojson.Safe.t ->
(namespace_chunk, Base.Error.t) Base.Result.t
val yojson_of_namespace_chunk : namespace_chunk -> Yojson.Safe.t
val namespace_chunk_of_yojson : Yojson.Safe.t -> namespace_chunk
val safe_yojson_of_node_for_def_id_contents_generated :
node_for_def_id_contents_generated ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_node_for_def_id_contents_generated_of_yojson :
Yojson.Safe.t ->
(node_for_def_id_contents_generated, Base.Error.t) Base.Result.t
val yojson_of_node_for_def_id_contents_generated :
node_for_def_id_contents_generated ->
Yojson.Safe.t
val node_for_def_id_contents_generated_of_yojson :
Yojson.Safe.t ->
node_for_def_id_contents_generated
val safe_yojson_of_node_for_ty_kind_generated :
node_for_ty_kind_generated ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_node_for_ty_kind_generated_of_yojson :
Yojson.Safe.t ->
(node_for_ty_kind_generated, Base.Error.t) Base.Result.t
val yojson_of_node_for_ty_kind_generated :
node_for_ty_kind_generated ->
Yojson.Safe.t
val node_for_ty_kind_generated_of_yojson :
Yojson.Safe.t ->
node_for_ty_kind_generated
val safe_yojson_of_non_macro_attr_kind :
non_macro_attr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_non_macro_attr_kind_of_yojson :
Yojson.Safe.t ->
(non_macro_attr_kind, Base.Error.t) Base.Result.t
val yojson_of_non_macro_attr_kind : non_macro_attr_kind -> Yojson.Safe.t
val non_macro_attr_kind_of_yojson : Yojson.Safe.t -> non_macro_attr_kind
val safe_yojson_of_normal_attr :
normal_attr ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_normal_attr_of_yojson :
Yojson.Safe.t ->
(normal_attr, Base.Error.t) Base.Result.t
val yojson_of_normal_attr : normal_attr -> Yojson.Safe.t
val normal_attr_of_yojson : Yojson.Safe.t -> normal_attr
val safe_yojson_of_outlives_predicate_for__node_for__ty_kind :
outlives_predicate_for__node_for__ty_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_outlives_predicate_for__node_for__ty_kind_of_yojson :
Yojson.Safe.t ->
(outlives_predicate_for__node_for__ty_kind, Base.Error.t) Base.Result.t
val yojson_of_outlives_predicate_for__node_for__ty_kind :
outlives_predicate_for__node_for__ty_kind ->
Yojson.Safe.t
val outlives_predicate_for__node_for__ty_kind_of_yojson :
Yojson.Safe.t ->
outlives_predicate_for__node_for__ty_kind
val safe_yojson_of_outlives_predicate_for__region :
outlives_predicate_for__region ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_outlives_predicate_for__region_of_yojson :
Yojson.Safe.t ->
(outlives_predicate_for__region, Base.Error.t) Base.Result.t
val yojson_of_outlives_predicate_for__region :
outlives_predicate_for__region ->
Yojson.Safe.t
val outlives_predicate_for__region_of_yojson :
Yojson.Safe.t ->
outlives_predicate_for__region
val safe_yojson_of_output :
output ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_output_of_yojson :
Yojson.Safe.t ->
(output, Base.Error.t) Base.Result.t
val yojson_of_output : output -> Yojson.Safe.t
val output_of_yojson : Yojson.Safe.t -> output
val safe_yojson_of_param : param -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_param_of_yojson : Yojson.Safe.t -> (param, Base.Error.t) Base.Result.t
val yojson_of_param : param -> Yojson.Safe.t
val param_of_yojson : Yojson.Safe.t -> param
val safe_yojson_of_param_const :
param_const ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_param_const_of_yojson :
Yojson.Safe.t ->
(param_const, Base.Error.t) Base.Result.t
val yojson_of_param_const : param_const -> Yojson.Safe.t
val param_const_of_yojson : Yojson.Safe.t -> param_const
val safe_yojson_of_param_name :
param_name ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_param_name_of_yojson :
Yojson.Safe.t ->
(param_name, Base.Error.t) Base.Result.t
val yojson_of_param_name : param_name -> Yojson.Safe.t
val param_name_of_yojson : Yojson.Safe.t -> param_name
val safe_yojson_of_param_ty :
param_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_param_ty_of_yojson :
Yojson.Safe.t ->
(param_ty, Base.Error.t) Base.Result.t
val yojson_of_param_ty : param_ty -> Yojson.Safe.t
val param_ty_of_yojson : Yojson.Safe.t -> param_ty
val safe_yojson_of_pat_kind :
pat_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_pat_kind_of_yojson :
Yojson.Safe.t ->
(pat_kind, Base.Error.t) Base.Result.t
val yojson_of_pat_kind : pat_kind -> Yojson.Safe.t
val pat_kind_of_yojson : Yojson.Safe.t -> pat_kind
val safe_yojson_of_pat_range :
pat_range ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_pat_range_of_yojson :
Yojson.Safe.t ->
(pat_range, Base.Error.t) Base.Result.t
val yojson_of_pat_range : pat_range -> Yojson.Safe.t
val pat_range_of_yojson : Yojson.Safe.t -> pat_range
val safe_yojson_of_pat_range_boundary :
pat_range_boundary ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_pat_range_boundary_of_yojson :
Yojson.Safe.t ->
(pat_range_boundary, Base.Error.t) Base.Result.t
val yojson_of_pat_range_boundary : pat_range_boundary -> Yojson.Safe.t
val pat_range_boundary_of_yojson : Yojson.Safe.t -> pat_range_boundary
val safe_yojson_of_path_or_dash :
path_or_dash ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_path_or_dash_of_yojson :
Yojson.Safe.t ->
(path_or_dash, Base.Error.t) Base.Result.t
val yojson_of_path_or_dash : path_or_dash -> Yojson.Safe.t
val path_or_dash_of_yojson : Yojson.Safe.t -> path_or_dash
val safe_yojson_of_path_segment :
path_segment ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_path_segment_of_yojson :
Yojson.Safe.t ->
(path_segment, Base.Error.t) Base.Result.t
val yojson_of_path_segment : path_segment -> Yojson.Safe.t
val path_segment_of_yojson : Yojson.Safe.t -> path_segment
val safe_yojson_of_placeholder_for__bound_region :
placeholder_for__bound_region ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_placeholder_for__bound_region_of_yojson :
Yojson.Safe.t ->
(placeholder_for__bound_region, Base.Error.t) Base.Result.t
val yojson_of_placeholder_for__bound_region :
placeholder_for__bound_region ->
Yojson.Safe.t
val placeholder_for__bound_region_of_yojson :
Yojson.Safe.t ->
placeholder_for__bound_region
val safe_yojson_of_placeholder_for__bound_ty :
placeholder_for__bound_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_placeholder_for__bound_ty_of_yojson :
Yojson.Safe.t ->
(placeholder_for__bound_ty, Base.Error.t) Base.Result.t
val yojson_of_placeholder_for__bound_ty :
placeholder_for__bound_ty ->
Yojson.Safe.t
val placeholder_for__bound_ty_of_yojson :
Yojson.Safe.t ->
placeholder_for__bound_ty
val safe_yojson_of_placeholder_for_uint :
placeholder_for_uint ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_placeholder_for_uint_of_yojson :
Yojson.Safe.t ->
(placeholder_for_uint, Base.Error.t) Base.Result.t
val yojson_of_placeholder_for_uint : placeholder_for_uint -> Yojson.Safe.t
val placeholder_for_uint_of_yojson : Yojson.Safe.t -> placeholder_for_uint
val safe_yojson_of_pointer_coercion :
pointer_coercion ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_pointer_coercion_of_yojson :
Yojson.Safe.t ->
(pointer_coercion, Base.Error.t) Base.Result.t
val yojson_of_pointer_coercion : pointer_coercion -> Yojson.Safe.t
val pointer_coercion_of_yojson : Yojson.Safe.t -> pointer_coercion
val safe_yojson_of_prim_ty :
prim_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_prim_ty_of_yojson :
Yojson.Safe.t ->
(prim_ty, Base.Error.t) Base.Result.t
val yojson_of_prim_ty : prim_ty -> Yojson.Safe.t
val prim_ty_of_yojson : Yojson.Safe.t -> prim_ty
val safe_yojson_of_pro_verif_options :
pro_verif_options ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_pro_verif_options_of_yojson :
Yojson.Safe.t ->
(pro_verif_options, Base.Error.t) Base.Result.t
val yojson_of_pro_verif_options : pro_verif_options -> Yojson.Safe.t
val pro_verif_options_of_yojson : Yojson.Safe.t -> pro_verif_options
val safe_yojson_of_profiling_data :
profiling_data ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_profiling_data_of_yojson :
Yojson.Safe.t ->
(profiling_data, Base.Error.t) Base.Result.t
val yojson_of_profiling_data : profiling_data -> Yojson.Safe.t
val profiling_data_of_yojson : Yojson.Safe.t -> profiling_data
val safe_yojson_of_projection_predicate :
projection_predicate ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_projection_predicate_of_yojson :
Yojson.Safe.t ->
(projection_predicate, Base.Error.t) Base.Result.t
val yojson_of_projection_predicate : projection_predicate -> Yojson.Safe.t
val projection_predicate_of_yojson : Yojson.Safe.t -> projection_predicate
val safe_yojson_of_q_path :
q_path ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_q_path_of_yojson :
Yojson.Safe.t ->
(q_path, Base.Error.t) Base.Result.t
val yojson_of_q_path : q_path -> Yojson.Safe.t
val q_path_of_yojson : Yojson.Safe.t -> q_path
val safe_yojson_of_range_end :
range_end ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_range_end_of_yojson :
Yojson.Safe.t ->
(range_end, Base.Error.t) Base.Result.t
val yojson_of_range_end : range_end -> Yojson.Safe.t
val range_end_of_yojson : Yojson.Safe.t -> range_end
val safe_yojson_of_real_file_name :
real_file_name ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_real_file_name_of_yojson :
Yojson.Safe.t ->
(real_file_name, Base.Error.t) Base.Result.t
val yojson_of_real_file_name : real_file_name -> Yojson.Safe.t
val real_file_name_of_yojson : Yojson.Safe.t -> real_file_name
val safe_yojson_of_region :
region ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_region_of_yojson :
Yojson.Safe.t ->
(region, Base.Error.t) Base.Result.t
val yojson_of_region : region -> Yojson.Safe.t
val region_of_yojson : Yojson.Safe.t -> region
val safe_yojson_of_region_kind :
region_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_region_kind_of_yojson :
Yojson.Safe.t ->
(region_kind, Base.Error.t) Base.Result.t
val yojson_of_region_kind : region_kind -> Yojson.Safe.t
val region_kind_of_yojson : Yojson.Safe.t -> region_kind
val safe_yojson_of_repr_flags :
repr_flags ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_repr_flags_of_yojson :
Yojson.Safe.t ->
(repr_flags, Base.Error.t) Base.Result.t
val yojson_of_repr_flags : repr_flags -> Yojson.Safe.t
val repr_flags_of_yojson : Yojson.Safe.t -> repr_flags
val safe_yojson_of_repr_options :
repr_options ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_repr_options_of_yojson :
Yojson.Safe.t ->
(repr_options, Base.Error.t) Base.Result.t
val yojson_of_repr_options : repr_options -> Yojson.Safe.t
val repr_options_of_yojson : Yojson.Safe.t -> repr_options
val safe_yojson_of_res : res -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_res_of_yojson : Yojson.Safe.t -> (res, Base.Error.t) Base.Result.t
val yojson_of_res : res -> Yojson.Safe.t
val res_of_yojson : Yojson.Safe.t -> res
val safe_yojson_of_result_of__string_or__string :
result_of__string_or__string ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_result_of__string_or__string_of_yojson :
Yojson.Safe.t ->
(result_of__string_or__string, Base.Error.t) Base.Result.t
val yojson_of_result_of__string_or__string :
result_of__string_or__string ->
Yojson.Safe.t
val result_of__string_or__string_of_yojson :
Yojson.Safe.t ->
result_of__string_or__string
val safe_yojson_of_safety :
safety ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_safety_of_yojson :
Yojson.Safe.t ->
(safety, Base.Error.t) Base.Result.t
val yojson_of_safety : safety -> Yojson.Safe.t
val safety_of_yojson : Yojson.Safe.t -> safety
val safe_yojson_of_scope : scope -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_scope_of_yojson : Yojson.Safe.t -> (scope, Base.Error.t) Base.Result.t
val yojson_of_scope : scope -> Yojson.Safe.t
val scope_of_yojson : Yojson.Safe.t -> scope
val safe_yojson_of_scope_data :
scope_data ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_scope_data_of_yojson :
Yojson.Safe.t ->
(scope_data, Base.Error.t) Base.Result.t
val yojson_of_scope_data : scope_data -> Yojson.Safe.t
val scope_data_of_yojson : Yojson.Safe.t -> scope_data
val safe_yojson_of_source_map :
source_map ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_source_map_of_yojson :
Yojson.Safe.t ->
(source_map, Base.Error.t) Base.Result.t
val yojson_of_source_map : source_map -> Yojson.Safe.t
val source_map_of_yojson : Yojson.Safe.t -> source_map
val safe_yojson_of_span : span -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_span_of_yojson : Yojson.Safe.t -> (span, Base.Error.t) Base.Result.t
val yojson_of_span : span -> Yojson.Safe.t
val span_of_yojson : Yojson.Safe.t -> span
val safe_yojson_of_spanned_for__lit_kind :
spanned_for__lit_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_spanned_for__lit_kind_of_yojson :
Yojson.Safe.t ->
(spanned_for__lit_kind, Base.Error.t) Base.Result.t
val yojson_of_spanned_for__lit_kind : spanned_for__lit_kind -> Yojson.Safe.t
val spanned_for__lit_kind_of_yojson : Yojson.Safe.t -> spanned_for__lit_kind
val safe_yojson_of_stmt : stmt -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_stmt_of_yojson : Yojson.Safe.t -> (stmt, Base.Error.t) Base.Result.t
val yojson_of_stmt : stmt -> Yojson.Safe.t
val stmt_of_yojson : Yojson.Safe.t -> stmt
val safe_yojson_of_stmt_kind :
stmt_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_stmt_kind_of_yojson :
Yojson.Safe.t ->
(stmt_kind, Base.Error.t) Base.Result.t
val yojson_of_stmt_kind : stmt_kind -> Yojson.Safe.t
val stmt_kind_of_yojson : Yojson.Safe.t -> stmt_kind
val safe_yojson_of_str_style :
str_style ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_str_style_of_yojson :
Yojson.Safe.t ->
(str_style, Base.Error.t) Base.Result.t
val yojson_of_str_style : str_style -> Yojson.Safe.t
val str_style_of_yojson : Yojson.Safe.t -> str_style
val safe_yojson_of_term : term -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_term_of_yojson : Yojson.Safe.t -> (term, Base.Error.t) Base.Result.t
val yojson_of_term : term -> Yojson.Safe.t
val term_of_yojson : Yojson.Safe.t -> term
val safe_yojson_of_to_engine :
to_engine ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_to_engine_of_yojson :
Yojson.Safe.t ->
(to_engine, Base.Error.t) Base.Result.t
val yojson_of_to_engine : to_engine -> Yojson.Safe.t
val to_engine_of_yojson : Yojson.Safe.t -> to_engine
val safe_yojson_of_trait_item_kind_for__decorated_for__expr_kind :
trait_item_kind_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_trait_item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(trait_item_kind_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_trait_item_kind_for__decorated_for__expr_kind :
trait_item_kind_for__decorated_for__expr_kind ->
Yojson.Safe.t
val trait_item_kind_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
trait_item_kind_for__decorated_for__expr_kind
val safe_yojson_of_trait_item_for__decorated_for__expr_kind :
trait_item_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_trait_item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(trait_item_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_trait_item_for__decorated_for__expr_kind :
trait_item_for__decorated_for__expr_kind ->
Yojson.Safe.t
val trait_item_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
trait_item_for__decorated_for__expr_kind
val safe_yojson_of_trait_predicate :
trait_predicate ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_trait_predicate_of_yojson :
Yojson.Safe.t ->
(trait_predicate, Base.Error.t) Base.Result.t
val yojson_of_trait_predicate : trait_predicate -> Yojson.Safe.t
val trait_predicate_of_yojson : Yojson.Safe.t -> trait_predicate
val safe_yojson_of_trait_ref :
trait_ref ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_trait_ref_of_yojson :
Yojson.Safe.t ->
(trait_ref, Base.Error.t) Base.Result.t
val yojson_of_trait_ref : trait_ref -> Yojson.Safe.t
val trait_ref_of_yojson : Yojson.Safe.t -> trait_ref
val safe_yojson_of_translation_options :
translation_options ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_translation_options_of_yojson :
Yojson.Safe.t ->
(translation_options, Base.Error.t) Base.Result.t
val yojson_of_translation_options : translation_options -> Yojson.Safe.t
val translation_options_of_yojson : Yojson.Safe.t -> translation_options
val safe_yojson_of_ty_fn_sig :
ty_fn_sig ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ty_fn_sig_of_yojson :
Yojson.Safe.t ->
(ty_fn_sig, Base.Error.t) Base.Result.t
val yojson_of_ty_fn_sig : ty_fn_sig -> Yojson.Safe.t
val ty_fn_sig_of_yojson : Yojson.Safe.t -> ty_fn_sig
val safe_yojson_of_ty_generics :
ty_generics ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ty_generics_of_yojson :
Yojson.Safe.t ->
(ty_generics, Base.Error.t) Base.Result.t
val yojson_of_ty_generics : ty_generics -> Yojson.Safe.t
val ty_generics_of_yojson : Yojson.Safe.t -> ty_generics
val safe_yojson_of_ty_kind :
ty_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_ty_kind_of_yojson :
Yojson.Safe.t ->
(ty_kind, Base.Error.t) Base.Result.t
val yojson_of_ty_kind : ty_kind -> Yojson.Safe.t
val ty_kind_of_yojson : Yojson.Safe.t -> ty_kind
val safe_yojson_of_uint_ty :
uint_ty ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_uint_ty_of_yojson :
Yojson.Safe.t ->
(uint_ty, Base.Error.t) Base.Result.t
val yojson_of_uint_ty : uint_ty -> Yojson.Safe.t
val uint_ty_of_yojson : Yojson.Safe.t -> uint_ty
val safe_yojson_of_un_op : un_op -> (Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_un_op_of_yojson : Yojson.Safe.t -> (un_op, Base.Error.t) Base.Result.t
val yojson_of_un_op : un_op -> Yojson.Safe.t
val un_op_of_yojson : Yojson.Safe.t -> un_op
val safe_yojson_of_use_kind :
use_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_use_kind_of_yojson :
Yojson.Safe.t ->
(use_kind, Base.Error.t) Base.Result.t
val yojson_of_use_kind : use_kind -> Yojson.Safe.t
val use_kind_of_yojson : Yojson.Safe.t -> use_kind
val safe_yojson_of_use_path :
use_path ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_use_path_of_yojson :
Yojson.Safe.t ->
(use_path, Base.Error.t) Base.Result.t
val yojson_of_use_path : use_path -> Yojson.Safe.t
val use_path_of_yojson : Yojson.Safe.t -> use_path
val safe_yojson_of_user_type :
user_type ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_user_type_of_yojson :
Yojson.Safe.t ->
(user_type, Base.Error.t) Base.Result.t
val yojson_of_user_type : user_type -> Yojson.Safe.t
val user_type_of_yojson : Yojson.Safe.t -> user_type
val safe_yojson_of_variance :
variance ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_variance_of_yojson :
Yojson.Safe.t ->
(variance, Base.Error.t) Base.Result.t
val yojson_of_variance : variance -> Yojson.Safe.t
val variance_of_yojson : Yojson.Safe.t -> variance
val safe_yojson_of_variant_data :
variant_data ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_variant_data_of_yojson :
Yojson.Safe.t ->
(variant_data, Base.Error.t) Base.Result.t
val yojson_of_variant_data : variant_data -> Yojson.Safe.t
val variant_data_of_yojson : Yojson.Safe.t -> variant_data
val safe_yojson_of_variant_informations :
variant_informations ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_variant_informations_of_yojson :
Yojson.Safe.t ->
(variant_informations, Base.Error.t) Base.Result.t
val yojson_of_variant_informations : variant_informations -> Yojson.Safe.t
val variant_informations_of_yojson : Yojson.Safe.t -> variant_informations
val safe_yojson_of_variant_kind :
variant_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_variant_kind_of_yojson :
Yojson.Safe.t ->
(variant_kind, Base.Error.t) Base.Result.t
val yojson_of_variant_kind : variant_kind -> Yojson.Safe.t
val variant_kind_of_yojson : Yojson.Safe.t -> variant_kind
val safe_yojson_of_variant_for__decorated_for__expr_kind :
variant_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_variant_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(variant_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_variant_for__decorated_for__expr_kind :
variant_for__decorated_for__expr_kind ->
Yojson.Safe.t
val variant_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
variant_for__decorated_for__expr_kind
val safe_yojson_of_with_def_ids_for__decorated_for__expr_kind :
with_def_ids_for__decorated_for__expr_kind ->
(Yojson.Safe.t, Base.Error.t) Base.Result.t
val safe_with_def_ids_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
(with_def_ids_for__decorated_for__expr_kind, Base.Error.t) Base.Result.t
val yojson_of_with_def_ids_for__decorated_for__expr_kind :
with_def_ids_for__decorated_for__expr_kind ->
Yojson.Safe.t
val with_def_ids_for__decorated_for__expr_kind_of_yojson :
Yojson.Safe.t ->
with_def_ids_for__decorated_for__expr_kind