pub struct ModuleContext<'a> { /* private fields */ }Expand description
Info that we keep track of on a per module-within-a-module-linking-bundle basis.
These are created during our parse pass and then used throughout
our later passes.
Trait Implementations§
Source§impl<'a> Default for ModuleContext<'a>
impl<'a> Default for ModuleContext<'a>
Source§fn default() -> ModuleContext<'a>
fn default() -> ModuleContext<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ModuleContext<'a>
impl<'a> RefUnwindSafe for ModuleContext<'a>
impl<'a> Send for ModuleContext<'a>
impl<'a> Sync for ModuleContext<'a>
impl<'a> Unpin for ModuleContext<'a>
impl<'a> UnwindSafe for ModuleContext<'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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more