Struct patternfly_yew::Toast[][src]

pub struct Toast {
    pub title: String,
    pub type: Type,
    pub timeout: Option<Duration>,
    pub body: Html,
    pub actions: Vec<Action>,
}

Toasts are small alerts that get shown on the top right corner of the page.

A toast can be triggered by every component. The toast fill get sent to an agent, the Toaster. The toaster will delegate displaying the toast to an instance of a ToastViewer component.

In order for Toasts to be displayed your application must have exactly one ToastViewer before creating the first Toast.

For example:

pub struct App{
  link: ComponentLink<Self>
};
pub enum Msg {
  Toast(Toast),
}
type Message = Msg;

fn update(&mut self, msg: Self::Message) -> bool {
  match msg {
    Msg::Toast(toast) => {
      ToastDispatcher::new().toast(toast);
      false
    }
  }
}


fn view(&self) -> Html {
 html!{
    <>
      <ToastViewer/>
      <div>
        <button onclick=self.link.callback(|_|{
            Msg::Toast("Toast Title".into())
        })>
          { "Click me" }  
        </button>
      </div>
    </>
  }
}

Fields

title: Stringtype: Typetimeout: Option<Duration>

The timeout when the toast will be removed automatically.

If no timeout is set, the toast will get a close button.

body: Htmlactions: Vec<Action>

Trait Implementations

impl Clone for Toast[src]

impl Debug for Toast[src]

impl Default for Toast[src]

impl<S: ToString> From<S> for Toast[src]

Allows to convert a string into a toast by using the string as title.

Auto Trait Implementations

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> CloneAny for T where
    T: Clone + Any

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.