Enum typst_syntax::ast::Imports
source · pub enum Imports<'a> {
Wildcard,
Items(ImportItems<'a>),
}
Expand description
The items that ought to be imported from a file.
Variants§
Wildcard
All items in the scope of the file should be imported.
Items(ImportItems<'a>)
The specified items from the file should be imported.
Trait Implementations§
impl<'a> Copy for Imports<'a>
Auto Trait Implementations§
impl<'a> Freeze for Imports<'a>
impl<'a> RefUnwindSafe for Imports<'a>
impl<'a> Send for Imports<'a>
impl<'a> Sync for Imports<'a>
impl<'a> Unpin for Imports<'a>
impl<'a> UnwindSafe for Imports<'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