pub struct Ui { /* private fields */ }Trait Implementations§
Source§impl Ui for Ui
impl Ui for Ui
type Area = Area
type MetaStatics = Mutex<Ui>
Source§fn open(ms: &'static Self::MetaStatics, tx: Sender, rx: Receiver<UiEvent>)
fn open(ms: &'static Self::MetaStatics, tx: Sender, rx: Receiver<UiEvent>)
Functions to trigger when the program begins Read more
Source§fn close(_ms: &'static Self::MetaStatics)
fn close(_ms: &'static Self::MetaStatics)
Functions to trigger when the program ends Read more
Source§fn load(_ms: &'static Self::MetaStatics)
fn load(_ms: &'static Self::MetaStatics)
Functions to trigger when the program reloads Read more
Source§fn new_root(
ms: &'static Self::MetaStatics,
cache: <Self::Area as Area>::Cache,
) -> Self::Area
fn new_root( ms: &'static Self::MetaStatics, cache: <Self::Area as Area>::Cache, ) -> Self::Area
Source§fn switch_window(ms: &'static Self::MetaStatics, win: usize)
fn switch_window(ms: &'static Self::MetaStatics, win: usize)
Switches the currently active window Read more
Source§fn flush_layout(ms: &'static Self::MetaStatics)
fn flush_layout(ms: &'static Self::MetaStatics)
Flush the layout Read more
Source§fn remove_window(ms: &'static Self::MetaStatics, win: usize)
fn remove_window(ms: &'static Self::MetaStatics, win: usize)
Source§impl Widget<Ui> for VertRule
impl Widget<Ui> for VertRule
Source§type Cfg = VertRuleCfg
type Cfg = VertRuleCfg
The configuration type
Source§fn once() -> Result<(), Error<()>>
fn once() -> Result<(), Error<()>>
Actions taken when this widget opens for the first time Read more
Source§fn cursors_mut(&mut self) -> Option<&mut Cursors>
fn cursors_mut(&mut self) -> Option<&mut Cursors>
A mutable reference to the
Cursors, if they existAuto Trait Implementations§
impl !Freeze for Ui
impl !RefUnwindSafe for Ui
impl Send for Ui
impl Sync for Ui
impl Unpin for Ui
impl !UnwindSafe for Ui
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