#[repr(C)]pub enum TabState {
Creating = 0,
Ready = 1,
Navigatable = 2,
Destroyed = 3,
}Expand description
Current state of a tab
Variants§
Creating = 0
Tab is being created
Ready = 1
Tab is created and ready
The tab is fully loaded and the load handler can now be used for navigation and loading urls
Destroyed = 3
Tab has been destroyed
Trait Implementations§
impl Eq for TabState
impl StructuralPartialEq for TabState
Auto Trait Implementations§
impl Freeze for TabState
impl RefUnwindSafe for TabState
impl Send for TabState
impl Sync for TabState
impl Unpin for TabState
impl UnwindSafe for TabState
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