PartialFfiResult

Type Alias PartialFfiResult 

Source
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§

§

None

No value.

§

Some(FfiResult<'tcx>)

Some value of type T.

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.