pub struct ClipEventFlags {Show 19 fields
pub key_up: bool,
pub key_down: bool,
pub mouse_up: bool,
pub mouse_down: bool,
pub mouse_move: bool,
pub unload: bool,
pub enter_frame: bool,
pub load: bool,
pub drag_over: bool,
pub roll_out: bool,
pub roll_over: bool,
pub release_outside: bool,
pub release: bool,
pub press: bool,
pub initialize: bool,
pub data: bool,
pub construct: bool,
pub key_press: bool,
pub drag_out: bool,
}
Fields§
§key_up: bool
§key_down: bool
§mouse_up: bool
§mouse_down: bool
§mouse_move: bool
§unload: bool
§enter_frame: bool
§load: bool
§drag_over: bool
§roll_out: bool
§roll_over: bool
§release_outside: bool
§release: bool
§press: bool
§initialize: bool
§data: bool
§construct: bool
§key_press: bool
§drag_out: bool
Trait Implementations§
Source§impl Clone for ClipEventFlags
impl Clone for ClipEventFlags
Source§fn clone(&self) -> ClipEventFlags
fn clone(&self) -> ClipEventFlags
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 moreSource§impl Debug for ClipEventFlags
impl Debug for ClipEventFlags
Source§impl<'de> Deserialize<'de> for ClipEventFlags
impl<'de> Deserialize<'de> for ClipEventFlags
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ClipEventFlags
impl Hash for ClipEventFlags
Source§impl Ord for ClipEventFlags
impl Ord for ClipEventFlags
Source§fn cmp(&self, other: &ClipEventFlags) -> Ordering
fn cmp(&self, other: &ClipEventFlags) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ClipEventFlags
impl PartialEq for ClipEventFlags
Source§impl PartialOrd for ClipEventFlags
impl PartialOrd for ClipEventFlags
Source§impl Serialize for ClipEventFlags
impl Serialize for ClipEventFlags
impl Copy for ClipEventFlags
impl Eq for ClipEventFlags
impl StructuralPartialEq for ClipEventFlags
Auto Trait Implementations§
impl Freeze for ClipEventFlags
impl RefUnwindSafe for ClipEventFlags
impl Send for ClipEventFlags
impl Sync for ClipEventFlags
impl Unpin for ClipEventFlags
impl UnwindSafe for ClipEventFlags
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