pub enum StartServerError {
Client(ClientError),
AutoStart(AutoStartError),
}Expand description
Client-side start-server failure surface.
Variants§
Client(ClientError)
Connecting to an already-running server failed.
AutoStart(AutoStartError)
Auto-starting the server failed.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StartServerError
impl !RefUnwindSafe for StartServerError
impl Send for StartServerError
impl Sync for StartServerError
impl Unpin for StartServerError
impl UnsafeUnpin for StartServerError
impl !UnwindSafe for StartServerError
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