type PartialFfiResult<'tcx> = Option<FfiResult<'tcx>>;
Expand description
The result when a type has been checked but perhaps not completely. None
indicates that
FFI safety/unsafety has not yet been determined, Some(res)
indicates that the safety/unsafety
in the FfiResult
is final.
Aliased Type§
enum PartialFfiResult<'tcx> {
None,
Some(FfiResult<'tcx>),
}
Variants§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.