Trait ra_ap_hir_ty::display::HirDisplay[][src]

pub trait HirDisplay {
    fn hir_fmt(&self, f: &mut HirFormatter<'_>) -> Result<(), HirDisplayError>;

    fn into_displayable<'a>(
        &'a self,
        db: &'a dyn HirDatabase,
        max_size: Option<usize>,
        omit_verbose_types: bool,
        display_target: DisplayTarget
    ) -> HirDisplayWrapper<'a, Self>
    where
        Self: Sized
, { ... }
fn display<'a>(
        &'a self,
        db: &'a dyn HirDatabase
    ) -> HirDisplayWrapper<'a, Self>
    where
        Self: Sized
, { ... }
fn display_truncated<'a>(
        &'a self,
        db: &'a dyn HirDatabase,
        max_size: Option<usize>
    ) -> HirDisplayWrapper<'a, Self>
    where
        Self: Sized
, { ... }
fn display_source_code<'a>(
        &'a self,
        db: &'a dyn HirDatabase,
        module_id: ModuleId
    ) -> Result<String, DisplaySourceCodeError> { ... }
fn display_test<'a>(
        &'a self,
        db: &'a dyn HirDatabase
    ) -> HirDisplayWrapper<'a, Self>
    where
        Self: Sized
, { ... } }

Required methods

fn hir_fmt(&self, f: &mut HirFormatter<'_>) -> Result<(), HirDisplayError>[src]

Loading content...

Provided methods

fn into_displayable<'a>(
    &'a self,
    db: &'a dyn HirDatabase,
    max_size: Option<usize>,
    omit_verbose_types: bool,
    display_target: DisplayTarget
) -> HirDisplayWrapper<'a, Self> where
    Self: Sized
[src]

Returns a Displayable type that is human-readable.

fn display<'a>(&'a self, db: &'a dyn HirDatabase) -> HirDisplayWrapper<'a, Self> where
    Self: Sized
[src]

Returns a Displayable type that is human-readable. Use this for showing types to the user (e.g. diagnostics)

fn display_truncated<'a>(
    &'a self,
    db: &'a dyn HirDatabase,
    max_size: Option<usize>
) -> HirDisplayWrapper<'a, Self> where
    Self: Sized
[src]

Returns a Displayable type that is human-readable and tries to be succinct. Use this for showing types to the user where space is constrained (e.g. doc popups)

fn display_source_code<'a>(
    &'a self,
    db: &'a dyn HirDatabase,
    module_id: ModuleId
) -> Result<String, DisplaySourceCodeError>
[src]

Returns a String representation of self that can be inserted into the given module. Use this when generating code (e.g. assists)

fn display_test<'a>(
    &'a self,
    db: &'a dyn HirDatabase
) -> HirDisplayWrapper<'a, Self> where
    Self: Sized
[src]

Returns a String representation of self for test purposes

Loading content...

Implementations on Foreign Types

impl<T: HirDisplay> HirDisplay for &T[src]

impl HirDisplay for TypeRef[src]

impl HirDisplay for TypeBound[src]

impl HirDisplay for Path[src]

impl HirDisplay for GenericArg[src]

Loading content...

Implementors

Loading content...