pub struct OverlayItem {
pub slot: OverlaySlot,
pub z: i32,
pub content: OverlayContent,
}Expand description
Overlay item attached to a page.
Fields§
§slot: OverlaySlotDestination slot.
z: i32Z-order.
content: OverlayContentOverlay payload.
Trait Implementations§
Source§impl Clone for OverlayItem
impl Clone for OverlayItem
Source§fn clone(&self) -> OverlayItem
fn clone(&self) -> OverlayItem
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 OverlayItem
impl Debug for OverlayItem
Source§impl PartialEq for OverlayItem
impl PartialEq for OverlayItem
impl StructuralPartialEq for OverlayItem
Auto Trait Implementations§
impl Freeze for OverlayItem
impl RefUnwindSafe for OverlayItem
impl Send for OverlayItem
impl Sync for OverlayItem
impl Unpin for OverlayItem
impl UnsafeUnpin for OverlayItem
impl UnwindSafe for OverlayItem
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