Enum ide::AssistResolveStrategy
source · pub enum AssistResolveStrategy {
None,
All,
Single(SingleResolve),
}
Expand description
A way to control how many assist to resolve during the assist resolution. When an assist is resolved, its edits are calculated that might be costly to always do by default.
Variants§
None
No assists should be resolved.
All
All assists should be resolved.
Single(SingleResolve)
Only a certain assist should be resolved.
Implementations§
source§impl AssistResolveStrategy
impl AssistResolveStrategy
pub fn should_resolve(&self, id: &AssistId) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AssistResolveStrategy
impl RefUnwindSafe for AssistResolveStrategy
impl Send for AssistResolveStrategy
impl Sync for AssistResolveStrategy
impl Unpin for AssistResolveStrategy
impl UnwindSafe for AssistResolveStrategy
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
§impl<T> Cast for T
impl<T> Cast for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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