Trait Bindings

Source
pub trait Bindings {
    type Setter<'a>
       where Self: 'a;

    // Required method
    fn setter(&mut self) -> Self::Setter<'_>;
}

Required Associated Types§

Source

type Setter<'a> where Self: 'a

Required Methods§

Source

fn setter(&mut self) -> Self::Setter<'_>

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.

Implementors§

Source§

impl Bindings for Checkbox

Source§

type Setter<'a> = Setter<'a>

Source§

impl Bindings for Div

Source§

type Setter<'a> = Setter<'a>

Source§

impl Bindings for Image

Source§

type Setter<'a> = Setter<'a>

Source§

impl Bindings for Knob

Source§

type Setter<'a> = Setter<'a>

Source§

impl Bindings for Scroll

Source§

type Setter<'a> = Setter<'a>

Source§

impl Bindings for Text

Source§

type Setter<'a> = Setter<'a>

Source§

impl Bindings for TextInput

Source§

type Setter<'a> = Setter<'a>