pub enum AttachOutcome {
Stay {
status: ServeStatus,
message: String,
},
Switch {
backend: Box<dyn BoardBackend>,
status: ServeStatus,
},
}Expand description
Result of the post-paint attach attempt. First paint always used
CoreBackend already.
Variants§
Stay
Keep CoreBackend. message is empty on a clean --offline.
Fields
§
status: ServeStatusStatus-line label after the attempt.
Switch
Replace the board store with a live client.
Fields
§
backend: Box<dyn BoardBackend>Connected control backend.
§
status: ServeStatusAlways ServeStatus::Live on this arm.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for AttachOutcome
impl !UnwindSafe for AttachOutcome
impl Freeze for AttachOutcome
impl Send for AttachOutcome
impl Sync for AttachOutcome
impl Unpin for AttachOutcome
impl UnsafeUnpin for AttachOutcome
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more