pub trait WithBreakpointExt<T> where
    T: Clone + Debug + PartialEq + ToString
{ fn on(&self, breakpoint: Breakpoint) -> WithBreakpoint<T>; fn all(&self) -> WithBreakpoint<T> { ... } fn sm(&self) -> WithBreakpoint<T> { ... } fn md(&self) -> WithBreakpoint<T> { ... } fn lg(&self) -> WithBreakpoint<T> { ... } fn xl(&self) -> WithBreakpoint<T> { ... } fn xxl(&self) -> WithBreakpoint<T> { ... } }

Required Methods

Provided Methods

Implementors