pub struct CreateTabResult<S> {
pub window: Window<S>,
pub tab: Tab<S>,
pub session: Session<S>,
}Expand description
Result of App::create_tab, containing the new window, tab, and session.
Fields§
§window: Window<S>§tab: Tab<S>§session: Session<S>Auto Trait Implementations§
impl<S> Freeze for CreateTabResult<S>
impl<S> !RefUnwindSafe for CreateTabResult<S>
impl<S> Send for CreateTabResult<S>where
S: Send,
impl<S> Sync for CreateTabResult<S>where
S: Send,
impl<S> Unpin for CreateTabResult<S>
impl<S> UnsafeUnpin for CreateTabResult<S>
impl<S> !UnwindSafe for CreateTabResult<S>
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