pub enum ResolveMode {
Failed,
Loaded,
Symbolized,
Resolved,
Checked,
}Expand description
Select what {ResolveContext::create()] automatically does.
Variants§
Failed
Failed context.
Loaded
Only load the sources.
Symbolized
Create symbol table.
Resolved
Resolve symbol table.
Checked
Check symbol table.
Trait Implementations§
Source§impl Default for ResolveMode
impl Default for ResolveMode
Source§fn default() -> ResolveMode
fn default() -> ResolveMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolveMode
impl PartialEq for ResolveMode
Source§impl PartialOrd for ResolveMode
impl PartialOrd for ResolveMode
impl StructuralPartialEq for ResolveMode
Auto Trait Implementations§
impl Freeze for ResolveMode
impl RefUnwindSafe for ResolveMode
impl Send for ResolveMode
impl Sync for ResolveMode
impl Unpin for ResolveMode
impl UnwindSafe for ResolveMode
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