#[non_exhaustive]pub struct FrameworkFactGraph {
pub exported_symbols: Vec<FrameworkExportedSymbolFact>,
pub dynamic_boundaries: Vec<FrameworkDynamicBoundaryFact>,
}Expand description
Facts emitted by framework adapters.
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.exported_symbols: Vec<FrameworkExportedSymbolFact>Framework-exported symbol facts in stable source order.
dynamic_boundaries: Vec<FrameworkDynamicBoundaryFact>Dynamic or unsupported framework boundaries in stable source order.
Trait Implementations§
Source§impl Clone for FrameworkFactGraph
impl Clone for FrameworkFactGraph
Source§fn clone(&self) -> FrameworkFactGraph
fn clone(&self) -> FrameworkFactGraph
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 FrameworkFactGraph
impl Debug for FrameworkFactGraph
Source§impl Default for FrameworkFactGraph
impl Default for FrameworkFactGraph
Source§fn default() -> FrameworkFactGraph
fn default() -> FrameworkFactGraph
Returns the “default value” for a type. Read more
Source§impl PartialEq for FrameworkFactGraph
impl PartialEq for FrameworkFactGraph
Source§fn eq(&self, other: &FrameworkFactGraph) -> bool
fn eq(&self, other: &FrameworkFactGraph) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for FrameworkFactGraph
impl StructuralPartialEq for FrameworkFactGraph
Auto Trait Implementations§
impl Freeze for FrameworkFactGraph
impl RefUnwindSafe for FrameworkFactGraph
impl Send for FrameworkFactGraph
impl Sync for FrameworkFactGraph
impl Unpin for FrameworkFactGraph
impl UnsafeUnpin for FrameworkFactGraph
impl UnwindSafe for FrameworkFactGraph
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