#[non_exhaustive]pub struct FrameworkDynamicBoundaryFact {
pub adapter: FrameworkAdapterKind,
pub package: Option<String>,
pub symbol: Option<String>,
pub range: SourceLocation,
pub boundary_item: Option<HirId>,
pub kind: StashDynamicBoundaryKind,
pub reason: String,
pub provenance: Provenance,
pub confidence: Confidence,
}Expand description
Dynamic or unsupported framework-adapter boundary.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.adapter: FrameworkAdapterKindAdapter that emitted this boundary.
package: Option<String>Package affected by the boundary, when known.
symbol: Option<String>Symbol affected by the boundary, when statically known.
range: SourceLocationSource range for the boundary.
boundary_item: Option<HirId>HIR item that also records this boundary, when available.
kind: StashDynamicBoundaryKindBoundary category.
reason: StringShort reason for status/proof output.
provenance: ProvenanceAdapter fact provenance.
confidence: ConfidenceAdapter fact confidence.
Trait Implementations§
Source§impl Clone for FrameworkDynamicBoundaryFact
impl Clone for FrameworkDynamicBoundaryFact
Source§fn clone(&self) -> FrameworkDynamicBoundaryFact
fn clone(&self) -> FrameworkDynamicBoundaryFact
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FrameworkDynamicBoundaryFact
impl Debug for FrameworkDynamicBoundaryFact
Source§impl PartialEq for FrameworkDynamicBoundaryFact
impl PartialEq for FrameworkDynamicBoundaryFact
Source§fn eq(&self, other: &FrameworkDynamicBoundaryFact) -> bool
fn eq(&self, other: &FrameworkDynamicBoundaryFact) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FrameworkDynamicBoundaryFact
impl StructuralPartialEq for FrameworkDynamicBoundaryFact
Auto Trait Implementations§
impl Freeze for FrameworkDynamicBoundaryFact
impl RefUnwindSafe for FrameworkDynamicBoundaryFact
impl Send for FrameworkDynamicBoundaryFact
impl Sync for FrameworkDynamicBoundaryFact
impl Unpin for FrameworkDynamicBoundaryFact
impl UnsafeUnpin for FrameworkDynamicBoundaryFact
impl UnwindSafe for FrameworkDynamicBoundaryFact
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more