#[repr(transparent)]pub struct cef_context_menu_edit_state_flags_t(pub c_uint);Expand description
Supported context menu edit state bit flags. These constants match their equivalents in Chromium’s ContextMenuDataEditFlags and should not be renumbered.
Tuple Fields§
§0: c_uintImplementations§
pub const CM_EDITFLAG_NONE: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_UNDO: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_REDO: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_CUT: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_COPY: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_PASTE: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_DELETE: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_SELECT_ALL: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_TRANSLATE: cef_context_menu_edit_state_flags_t
pub const CM_EDITFLAG_CAN_EDIT_RICHLY: cef_context_menu_edit_state_flags_t
Trait Implementations§
Source§fn bitand_assign(&mut self, rhs: cef_context_menu_edit_state_flags_t)
fn bitand_assign(&mut self, rhs: cef_context_menu_edit_state_flags_t)
Performs the
&= operation. Read moreSource§fn bitor_assign(&mut self, rhs: cef_context_menu_edit_state_flags_t)
fn bitor_assign(&mut self, rhs: cef_context_menu_edit_state_flags_t)
Performs the
|= operation. Read moreSource§fn clone(&self) -> cef_context_menu_edit_state_flags_t
fn clone(&self) -> cef_context_menu_edit_state_flags_t
Returns a duplicate 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 moreSource§fn eq(&self, other: &cef_context_menu_edit_state_flags_t) -> bool
fn eq(&self, other: &cef_context_menu_edit_state_flags_t) -> bool
Tests for
self and other values to be equal, and is used by ==.Auto 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