pub struct PackSet {
pub macros: BTreeMap<String, Macro>,
}Expand description
A validated set of packs: every macro, indexed by (globally unique) name.
Fields§
§macros: BTreeMap<String, Macro>All macros by name (pass 3 guarantees global uniqueness).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PackSet
impl RefUnwindSafe for PackSet
impl Send for PackSet
impl Sync for PackSet
impl Unpin for PackSet
impl UnsafeUnpin for PackSet
impl UnwindSafe for PackSet
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