pub struct AdvancedExportBundle {
pub hierarchy: Option<HashMap<String, Vec<String>>>,
pub constraints: HashMap<String, PredicateConstraints>,
pub refinement_types: HashMap<String, String>,
pub dependent_types: HashMap<String, String>,
pub linear_types: HashMap<String, String>,
pub effects: HashMap<String, Vec<String>>,
}Expand description
Advanced export bundle containing type system information.
Fields§
§hierarchy: Option<HashMap<String, Vec<String>>>Domain hierarchy (subtype relationships).
constraints: HashMap<String, PredicateConstraints>Predicate constraints.
refinement_types: HashMap<String, String>Refinement type specifications.
dependent_types: HashMap<String, String>Dependent type specifications.
linear_types: HashMap<String, String>Linear type specifications.
effects: HashMap<String, Vec<String>>Effect specifications.
Implementations§
Trait Implementations§
Source§impl Clone for AdvancedExportBundle
impl Clone for AdvancedExportBundle
Source§fn clone(&self) -> AdvancedExportBundle
fn clone(&self) -> AdvancedExportBundle
Returns a duplicate of the value. Read more
1.0.0 · 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 AdvancedExportBundle
impl Debug for AdvancedExportBundle
Auto Trait Implementations§
impl Freeze for AdvancedExportBundle
impl RefUnwindSafe for AdvancedExportBundle
impl Send for AdvancedExportBundle
impl Sync for AdvancedExportBundle
impl Unpin for AdvancedExportBundle
impl UnwindSafe for AdvancedExportBundle
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