pub struct TouchHandleState {
pub size: usize,
pub touch_handle_id: c_int,
pub flags: u32,
pub enabled: c_int,
pub orientation: HorizontalAlignment,
pub mirror_vertical: c_int,
pub mirror_horizontal: c_int,
pub origin: Point,
pub alpha: f32,
}Expand description
See _cef_touch_handle_state_t for more documentation.
Fields§
§size: usize§touch_handle_id: c_int§flags: u32§enabled: c_int§orientation: HorizontalAlignment§mirror_vertical: c_int§mirror_horizontal: c_int§origin: Point§alpha: f32Trait Implementations§
Source§impl Clone for TouchHandleState
impl Clone for TouchHandleState
Source§fn clone(&self) -> TouchHandleState
fn clone(&self) -> TouchHandleState
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§impl Debug for TouchHandleState
impl Debug for TouchHandleState
Source§impl Default for TouchHandleState
impl Default for TouchHandleState
Source§impl From<TouchHandleState> for _cef_touch_handle_state_t
impl From<TouchHandleState> for _cef_touch_handle_state_t
Source§fn from(value: TouchHandleState) -> Self
fn from(value: TouchHandleState) -> Self
Converts to this type from the input type.
Source§impl From<_cef_touch_handle_state_t> for TouchHandleState
impl From<_cef_touch_handle_state_t> for TouchHandleState
Source§fn from(value: _cef_touch_handle_state_t) -> Self
fn from(value: _cef_touch_handle_state_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TouchHandleState
impl RefUnwindSafe for TouchHandleState
impl Send for TouchHandleState
impl Sync for TouchHandleState
impl Unpin for TouchHandleState
impl UnwindSafe for TouchHandleState
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