pub struct SessionState {
pub name: String,
pub port: u16,
pub view: SharedView,
pub pipeline: Pipeline,
pub connected: bool,
}Expand description
Per-session state owned by the main loop.
Fields§
§name: String§port: u16§view: SharedView§pipeline: Pipeline§connected: boolImplementations§
Source§impl SessionState
impl SessionState
Sourcepub fn window_title(&self) -> String
pub fn window_title(&self) -> String
Title text for this session’s window.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for SessionState
impl !Send for SessionState
impl !Sync for SessionState
impl !UnwindSafe for SessionState
impl Freeze for SessionState
impl Unpin for SessionState
impl UnsafeUnpin for SessionState
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