Enum rustc_borrowck::diagnostics::outlives_suggestion::SuggestedConstraint [−][src]
enum SuggestedConstraint {
Outlives(RegionName, SmallVec<[RegionName; 2]>),
Equal(RegionName, RegionName),
Static(RegionName),
}
Expand description
The different things we could suggest.
Variants
Outlives(RegionName, SmallVec<[RegionName; 2]>)
Outlives(a, [b, c, d, …]) => ’a: ’b + ’c + ’d + …
Tuple Fields of Outlives
Equal(RegionName, RegionName)
’a = ’b
Tuple Fields of Equal
0: RegionName
1: RegionName
Static(RegionName)
’a: ’static i.e. ’a = ’static and the user should just use ’static
Tuple Fields of Static
0: RegionName
Auto Trait Implementations
impl RefUnwindSafe for SuggestedConstraint
impl !Send for SuggestedConstraint
impl !Sync for SuggestedConstraint
impl Unpin for SuggestedConstraint
impl UnwindSafe for SuggestedConstraint
Blanket Implementations
Layout
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: 256 bytes
Size for each variant:
Outlives
: 248 bytesEqual
: 160 bytesStatic
: 80 bytes