Struct ra_ap_hir_ty::display::HirFormatter[][src]

pub struct HirFormatter<'a> {
    pub db: &'a dyn HirDatabase,
    // some fields omitted
}

Fields

db: &'a dyn HirDatabase

Implementations

impl<'a> HirFormatter<'a>[src]

pub fn write_joined<T: HirDisplay>(
    &mut self,
    iter: impl IntoIterator<Item = T>,
    sep: &str
) -> Result<(), HirDisplayError>
[src]

pub fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), HirDisplayError>[src]

This allows using the write! macro directly with a HirFormatter.

pub fn should_truncate(&self) -> bool[src]

pub fn omit_verbose_types(&self) -> bool[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for HirFormatter<'a>

impl<'a> !Send for HirFormatter<'a>

impl<'a> !Sync for HirFormatter<'a>

impl<'a> Unpin for HirFormatter<'a>

impl<'a> !UnwindSafe for HirFormatter<'a>

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[src]

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, 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.