pub struct TabState {
pub tab_id: u32,
pub url: String,
pub title: String,
pub bridge_ready: bool,
pub recorder: EventRecorder,
pub event_log: EventLog,
pub pending_commands: HashMap<String, Sender<Value>>,
}Expand description
Per-tab bridge state tracked by the native host.
Fields§
§tab_id: u32§url: String§title: String§bridge_ready: bool§recorder: EventRecorder§event_log: EventLog§pending_commands: HashMap<String, Sender<Value>>Auto Trait Implementations§
impl Freeze for TabState
impl !RefUnwindSafe for TabState
impl Send for TabState
impl Sync for TabState
impl Unpin for TabState
impl UnsafeUnpin 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