pub struct WindowRootEntry {
pub node: NodeId,
pub descriptor: Rc<dyn WindowRootDescriptor>,
}Expand description
A window root the registry knows about.
Fields§
§node: NodeIdThe layout node carrying the window root modifier, which identifies the window: it stays the same node across recompositions.
descriptor: Rc<dyn WindowRootDescriptor>The platform’s description of the window.
Trait Implementations§
Source§impl Clone for WindowRootEntry
impl Clone for WindowRootEntry
Source§fn clone(&self) -> WindowRootEntry
fn clone(&self) -> WindowRootEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for WindowRootEntry
impl !Send for WindowRootEntry
impl !Sync for WindowRootEntry
impl !UnwindSafe for WindowRootEntry
impl Freeze for WindowRootEntry
impl Unpin for WindowRootEntry
impl UnsafeUnpin for WindowRootEntry
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