pub struct ParsedModule<'a> {
pub module: Module<'a>,
}Expand description
A parsed HUGR module.
This consists of the module itself, together with additional information that was extracted from the text format.
Fields§
§module: Module<'a>The parsed module.
Trait Implementations§
Source§impl<'a> Clone for ParsedModule<'a>
impl<'a> Clone for ParsedModule<'a>
Source§fn clone(&self) -> ParsedModule<'a>
fn clone(&self) -> ParsedModule<'a>
Returns a copy 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 ParsedModule<'a>
impl<'a> RefUnwindSafe for ParsedModule<'a>
impl<'a> Send for ParsedModule<'a>
impl<'a> Sync for ParsedModule<'a>
impl<'a> Unpin for ParsedModule<'a>
impl<'a> UnwindSafe for ParsedModule<'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