Struct ux::Event [−][src]
pub struct Event(_);
A generic Clutter event.
Implementations
impl Event[src]
pub fn new(type_: EventType) -> Event[src]
Creates a new event.
pub fn get() -> Option<Event>[src]
pub fn put(&self)[src]
pub fn get_time(&self) -> u32[src]
pub fn get_event_sequence(&self) -> Option<EventSequence>[src]
Returns the associated Window if applicable.
pub fn set_device(&mut self, device: Option<&InputDevice>)[src]
pub fn get_device(&self) -> Option<InputDevice>[src]
pub fn set_source_device(&mut self, device: Option<&InputDevice>)[src]
pub fn get_source_device(&self) -> Option<InputDevice>[src]
pub fn is<T>(&self) -> bool where
T: FromEvent, [src]
T: FromEvent,
Returns true if the event type matches T.
pub fn downcast<T>(self) -> Result<T, Event> where
T: FromEvent, [src]
T: FromEvent,
Tries to downcast to a specific event type.
pub fn downcast_ref<T>(&self) -> Option<&T> where
T: FromEvent, [src]
T: FromEvent,
Tries to downcast to a specific event type.
pub fn downcast_mut<T>(&mut self) -> Option<&mut T> where
T: FromEvent, [src]
T: FromEvent,
Tries to downcast to a specific event type.
Trait Implementations
impl AsMut<ClutterAnyEvent> for Event[src]
impl AsRef<ClutterAnyEvent> for Event[src]
impl Clone for Event[src]
impl Debug for Event[src]
impl Eq for Event[src]
impl FromEvent for Event[src]
impl FromGlibPtrBorrow<*mut ClutterAnyEvent> for Event[src]
pub unsafe fn from_glib_borrow(ptr: *mut ClutterAnyEvent) -> Borrowed<Event>[src]
impl FromGlibPtrFull<*mut ClutterAnyEvent> for Event[src]
pub unsafe fn from_glib_full(ptr: *mut ClutterAnyEvent) -> Event[src]
impl FromGlibPtrNone<*mut ClutterAnyEvent> for Event[src]
pub unsafe fn from_glib_none(ptr: *mut ClutterAnyEvent) -> Event[src]
impl Hash for Event[src]
pub fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
__H: Hasher,
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for Event[src]
pub fn cmp(&self, other: &Event) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]
pub fn max(self, other: Self) -> Self#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]
pub fn min(self, other: Self) -> Self#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
#[must_use]
pub fn clamp(self, min: Self, max: Self) -> Selfimpl PartialEq<Event> for Event[src]
impl PartialOrd<Event> for Event[src]
pub fn partial_cmp(&self, other: &Event) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
pub fn lt(&self, other: &Rhs) -> bool#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
pub fn le(&self, other: &Rhs) -> bool#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
pub fn gt(&self, other: &Rhs) -> bool#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
pub fn ge(&self, other: &Rhs) -> boolimpl StaticType for Event[src]
pub fn static_type() -> Type[src]
impl StructuralEq for Event[src]
impl StructuralPartialEq for Event[src]
impl<'a> ToGlibPtr<'a, *const ClutterAnyEvent> for Event[src]
type Storage = &'a Event
pub fn to_glib_none(&'a self) -> Stash<'a, *const ClutterAnyEvent, Event>[src]
pub fn to_glib_container(&'a self) -> Stash<'a, P, Self>[src]
pub fn to_glib_full(&self) -> P[src]
impl<'a> ToGlibPtrMut<'a, *mut ClutterAnyEvent> for Event[src]
Auto Trait Implementations
impl RefUnwindSafe for Event
impl !Send for Event
impl !Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToValue for T where
T: SetValue + ?Sized, [src]
T: SetValue + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,