[][src]Struct ra_ap_assists::Assist

pub struct Assist {
    pub id: AssistId,
    pub label: Label,
    pub group: Option<GroupLabel>,
    pub target: TextRange,
}

Fields

id: AssistIdlabel: Label

Short description of the assist, as shown in the UI.

group: Option<GroupLabel>target: TextRange

Target ranges are used to sort assists: the smaller the target range, the more specific assist is, and so it should be sorted first.

Implementations

impl Assist[src]

pub fn unresolved(
    db: &RootDatabase,
    config: &AssistConfig,
    range: FileRange
) -> Vec<Assist>
[src]

Return all the assists applicable at the given position.

Assists are returned in the "unresolved" state, that is only labels are returned, without actual edits.

pub fn resolved(
    db: &RootDatabase,
    config: &AssistConfig,
    range: FileRange
) -> Vec<ResolvedAssist>
[src]

Return all the assists applicable at the given position.

Assists are returned in the "resolved" state, that is with edit fully computed.

Trait Implementations

impl Clone for Assist[src]

impl Debug for Assist[src]

Auto Trait Implementations

impl RefUnwindSafe for Assist

impl Send for Assist

impl Sync for Assist

impl Unpin for Assist

impl UnwindSafe for Assist

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Cast for T

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.