pub struct BridgeState {
pub port: u16,
pub lock_file: PathBuf,
}Expand description
Bridge server state shared across request handlers.
Fields§
§port: u16Port the bridge is listening on.
lock_file: PathBufPath to the lock file (for IDE discovery).
Auto Trait Implementations§
impl Freeze for BridgeState
impl RefUnwindSafe for BridgeState
impl Send for BridgeState
impl Sync for BridgeState
impl Unpin for BridgeState
impl UnsafeUnpin for BridgeState
impl UnwindSafe for BridgeState
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