[][src]Struct agda_mode::resp::AspectHighlight

pub struct AspectHighlight {
    pub range: (IntPos, IntPos),
    pub atoms: Vec<String>,
    pub token_based: TokenBased,
    pub note: Option<String>,
    pub definition_site: Option<DefinitionSite>,
}

A token highlighting information. The token is somehow called Aspect in Agda.

Fields

range: (IntPos, IntPos)atoms: Vec<String>token_based: TokenBasednote: Option<String>definition_site: Option<DefinitionSite>

Trait Implementations

impl Clone for AspectHighlight[src]

impl Debug for AspectHighlight[src]

impl Default for AspectHighlight[src]

impl<'de> Deserialize<'de> for AspectHighlight[src]

impl Eq for AspectHighlight[src]

impl PartialEq<AspectHighlight> for AspectHighlight[src]

impl StructuralEq for AspectHighlight[src]

impl StructuralPartialEq for AspectHighlight[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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.