pub struct Interpreted<'a> {
pub rules: HashMap<Key, Rule<'a>>,
pub entry_points: Vec<Key>,
pub metadata: Metadata<'a>,
}
Fields§
§rules: HashMap<Key, Rule<'a>>
§entry_points: Vec<Key>
§metadata: Metadata<'a>
Trait Implementations§
Source§impl<'a> Clone for Interpreted<'a>
impl<'a> Clone for Interpreted<'a>
Source§fn clone(&self) -> Interpreted<'a>
fn clone(&self) -> Interpreted<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for Interpreted<'a>
impl<'a> RefUnwindSafe for Interpreted<'a>
impl<'a> Send for Interpreted<'a>
impl<'a> Sync for Interpreted<'a>
impl<'a> Unpin for Interpreted<'a>
impl<'a> UnwindSafe for Interpreted<'a>
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