pub trait DisplayableInTimeline {
    fn fmt(&self, timeline: Option<&Timeline>, f: &mut Formatter<'_>) -> Result;

    fn display<'a>(
        &'a self,
        timeline: Option<&'a Timeline>
    ) -> DisplayInTimeline<'a, Self> { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors