pub struct Screen {
pub id: ScreenId,
pub route_name: String,
pub params: HashMap<String, String>,
pub presentation: Presentation,
pub root_node: Option<NodeId>,
pub native_handle: Option<NativeHandle>,
}Expand description
An active screen in the navigation stack.
Fields§
§id: ScreenId§route_name: String§params: HashMap<String, String>§presentation: Presentation§root_node: Option<NodeId>§native_handle: Option<NativeHandle>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Screen
impl RefUnwindSafe for Screen
impl Send for Screen
impl Sync for Screen
impl Unpin for Screen
impl UnsafeUnpin for Screen
impl UnwindSafe for Screen
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