pub struct ListSessionsResult<S> {
pub windows: Vec<WindowInfo<S>>,
pub buried_sessions: Vec<Session<S>>,
}Expand description
Result of App::list_sessions, containing all windows and buried sessions.
Fields§
§windows: Vec<WindowInfo<S>>§buried_sessions: Vec<Session<S>>Auto Trait Implementations§
impl<S> Freeze for ListSessionsResult<S>
impl<S> !RefUnwindSafe for ListSessionsResult<S>
impl<S> Send for ListSessionsResult<S>where
S: Send,
impl<S> Sync for ListSessionsResult<S>where
S: Send,
impl<S> Unpin for ListSessionsResult<S>
impl<S> UnsafeUnpin for ListSessionsResult<S>
impl<S> !UnwindSafe for ListSessionsResult<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