Trait patternfly_yew::utils::IntoAction

source ·
pub trait IntoAction {
    // Required method
    fn into_action<S: ToString>(self, label: S) -> Action;
}
Expand description

Allows converting something into an Action by providing a label.

Required Methods§

source

fn into_action<S: ToString>(self, label: S) -> Action

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl IntoAction for Callback<()>

source§

fn into_action<S>(self, label: S) -> Action
where S: ToString,

Implementors§