pub struct RunningServer {
pub base_url: String,
pub shutdown: Sender<()>,
pub handle: JoinHandle<Result<()>>,
}Fields§
§base_url: String§shutdown: Sender<()>§handle: JoinHandle<Result<()>>Auto Trait Implementations§
impl Freeze for RunningServer
impl !RefUnwindSafe for RunningServer
impl Send for RunningServer
impl Sync for RunningServer
impl Unpin for RunningServer
impl !UnwindSafe for RunningServer
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more