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§
Sourcefn set_flex_for_view(&self, view: Option<&mut View>, flex: c_int)
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.
Sourcefn clear_flex_for_view(&self, view: Option<&mut View>)
fn clear_flex_for_view(&self, view: Option<&mut View>)
See _cef_box_layout_t::clear_flex_for_view for more documentation.
Provided Methods§
fn get_raw(&self) -> *mut _cef_box_layout_t
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.