Type Alias Value Copy item path
Summary Source pub type Value<'tcx> = Asyncness ;
enum Value<'tcx> {
Yes,
No,
}
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Implementations Trait Implementations Performs copy-assignment from
source
.
Read more Formats the value using the given formatter.
Read more Tests for self
and other
values to be equal, and is used by ==
.
Tests for !=
. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
The entry point for folding. To fold a value
t
with a folder
f
call:
t.try_fold_with(f)
.
Read more The entry point for folding. To fold a value
t
with a folder
f
call:
t.fold_with(f)
.
Read more The entry point for visiting. To visit a value
t
with a visitor
v
call:
t.visit_with(v)
.
Read more