pub struct TabData {
pub id: TabId,
pub current_dimensions: TabDimensions,
pub current_url: String,
pub event_logging: EventLoggingState,
pub callbacks: TabCallbacks,
}Expand description
Internal tab information
Fields§
§id: TabIdTab ID
current_dimensions: TabDimensionsCurrent size of the tab
current_url: StringCurrent URL Best effort last known url that was mentioned in the last load_end callback
event_logging: EventLoggingStateWhether event logging is active
callbacks: TabCallbackscallbacks into various sub systems
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TabData
impl !RefUnwindSafe for TabData
impl Send for TabData
impl Sync for TabData
impl Unpin for TabData
impl !UnwindSafe for TabData
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