pub struct Logger { /* private fields */ }Trait Implementations§
Source§impl Component for Logger
impl Component for Logger
fn init(&mut self, _: UnboundedSender<Action>) -> Result<()>
fn render(&mut self, f: &mut Frame<'_>, rect: Rect)
fn handle_events(&mut self, event: Option<Event>) -> Vec<Action>
fn handle_key_events(&mut self, key: KeyEvent) -> Vec<Action>
fn handle_mouse_events(&mut self, mouse: MouseEvent) -> Vec<Action>
fn dispatch(&mut self, action: Action) -> Option<Action>
Auto Trait Implementations§
impl Freeze for Logger
impl !RefUnwindSafe for Logger
impl Send for Logger
impl Sync for Logger
impl Unpin for Logger
impl !UnwindSafe for Logger
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more