pub struct WindowId(_);
Expand description
Identifier of a window. Unique for each window.
Can be obtained with window.id()
.
Whenever you receive an event specific to a window, this event contains a WindowId
which you
can then compare to the ids of your windows.
Implementations
sourceimpl WindowId
impl WindowId
sourcepub unsafe fn dummy() -> WindowId
pub unsafe fn dummy() -> WindowId
Safety
Returns a dummy WindowId
, useful for unit testing. The only guarantee made about the return
value of this function is that it will always be equal to itself and to future values returned
by this function. No other guarantees are made. This may be equal to a real WindowId
.
Passing this into a tao function will result in undefined behavior.
Trait Implementations
sourceimpl Ord for WindowId
impl Ord for WindowId
sourceimpl PartialOrd<WindowId> for WindowId
impl PartialOrd<WindowId> for WindowId
sourcepub fn partial_cmp(&self, other: &WindowId) -> Option<Ordering>
pub fn partial_cmp(&self, other: &WindowId) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for WindowId
impl Eq for WindowId
impl StructuralEq for WindowId
impl StructuralPartialEq for WindowId
Auto Trait Implementations
impl RefUnwindSafe for WindowId
impl Send for WindowId
impl Sync for WindowId
impl Unpin for WindowId
impl UnwindSafe for WindowId
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more