pub struct Connected {
pub device_token: String,
pub host: String,
pub publish: PublishResult,
pub attached: bool,
}Expand description
The result of a successful connect.
Fields§
§device_token: String§host: String§publish: PublishResult§attached: boolTrue if we attached to an engine already running; false if we spawned one.
Auto Trait Implementations§
impl Freeze for Connected
impl RefUnwindSafe for Connected
impl Send for Connected
impl Sync for Connected
impl Unpin for Connected
impl UnsafeUnpin for Connected
impl UnwindSafe for Connected
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