pub struct TabInfo {
pub tab_data: TabData,
pub tab_state: TabState,
pub registered_event: Vec<String>,
}Expand description
Information about a tab’s current state
Fields§
§tab_data: TabDatainternal runtime information of the tab
tab_state: TabStateWhether the tab exists and is valid
registered_event: Vec<String>list of registered listeners
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TabInfo
impl !RefUnwindSafe for TabInfo
impl Send for TabInfo
impl Sync for TabInfo
impl Unpin for TabInfo
impl !UnwindSafe for TabInfo
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