SetStatusBarText

Trait SetStatusBarText 

Source
pub trait SetStatusBarText {
    // Required method
    fn set_status_bar_text(
        self,
        text: impl Into<String>,
        msg_writer: &mut MessageWriter<'_, UiCommand>,
    ) -> Self;
}

Required Methods§

Source

fn set_status_bar_text( self, text: impl Into<String>, msg_writer: &mut MessageWriter<'_, UiCommand>, ) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl SetStatusBarText for (Rect, Response)

Source§

fn set_status_bar_text( self, text: impl Into<String>, msg_writer: &mut MessageWriter<'_, UiCommand>, ) -> Self

Source§

impl SetStatusBarText for Response

Source§

fn set_status_bar_text( self, text: impl Into<String>, msg_writer: &mut MessageWriter<'_, UiCommand>, ) -> Self

Source§

impl SetStatusBarText for Ui

Source§

fn set_status_bar_text( self, text: impl Into<String>, msg_writer: &mut MessageWriter<'_, UiCommand>, ) -> Self

Implementors§