pub struct Linked {
pub modules: Vec<LinkedModule>,
pub host_modules: Vec<String>,
pub errors: Vec<String>,
pub lints: Vec<String>,
pub checks: Vec<(PathBuf, CheckInfo)>,
/* private fields */
}Fields§
§modules: Vec<LinkedModule>§host_modules: Vec<String>§errors: Vec<String>Type errors and unresolved requires. A module with a type error is absent from
the bundle, so the bundle is only handed out (bundle) when this
is empty: a program missing a module dies at its first require, far from here.
lints: Vec<String>§checks: Vec<(PathBuf, CheckInfo)>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Linked
impl RefUnwindSafe for Linked
impl Send for Linked
impl Sync for Linked
impl Unpin for Linked
impl UnsafeUnpin for Linked
impl UnwindSafe for Linked
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