pub enum HostResponse {
HandshakeOk,
AccountList(Vec<Account>),
Error(String),
}Expand description
Outgoing response to the app.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HostResponse
impl RefUnwindSafe for HostResponse
impl Send for HostResponse
impl Sync for HostResponse
impl Unpin for HostResponse
impl UnsafeUnpin for HostResponse
impl UnwindSafe for HostResponse
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