#[repr(C)]pub struct _cef_button_t {
pub base: cef_view_t,
pub as_label_button: Option<unsafe extern "C" fn(self_: *mut _cef_button_t) -> *mut _cef_label_button_t>,
pub set_state: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, state: cef_button_state_t)>,
pub get_state: Option<unsafe extern "C" fn(self_: *mut _cef_button_t) -> cef_button_state_t>,
pub set_ink_drop_enabled: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, enabled: c_int)>,
pub set_tooltip_text: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, tooltip_text: *const cef_string_t)>,
pub set_accessible_name: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, name: *const cef_string_t)>,
}Fields§
§base: cef_view_t§set_state: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, state: cef_button_state_t)>§get_state: Option<unsafe extern "C" fn(self_: *mut _cef_button_t) -> cef_button_state_t>§set_ink_drop_enabled: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, enabled: c_int)>§set_tooltip_text: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, tooltip_text: *const cef_string_t)>§set_accessible_name: Option<unsafe extern "C" fn(self_: *mut _cef_button_t, name: *const cef_string_t)>Trait Implementations§
Source§fn clone(&self) -> _cef_button_t
fn clone(&self) -> _cef_button_t
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more