ImplBoxLayout

Trait ImplBoxLayout 

Source
pub trait ImplBoxLayout: ImplLayout {
    // Required methods
    fn set_flex_for_view(&self, view: Option<&mut View>, flex: c_int);
    fn clear_flex_for_view(&self, view: Option<&mut View>);

    // Provided method
    fn get_raw(&self) -> *mut _cef_box_layout_t { ... }
}

Required Methods§

Source

fn set_flex_for_view(&self, view: Option<&mut View>, flex: c_int)

See _cef_box_layout_t::set_flex_for_view for more documentation.

Source

fn clear_flex_for_view(&self, view: Option<&mut View>)

See _cef_box_layout_t::clear_flex_for_view for more documentation.

Provided Methods§

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§