Trait Properties

Source
pub trait Properties {
    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 Properties for Checkbox

Source§

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

Source§

impl Properties for Div

Source§

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

Source§

impl Properties for Image

Source§

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

Source§

impl Properties for Knob

Source§

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

Source§

impl Properties for Scroll

Source§

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

Source§

impl Properties for Text

Source§

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

Source§

impl Properties for TextInput

Source§

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