pub struct AutodetectedConnection {
pub template_name: String,
pub report: TemplateDetectReport,
pub sender: Sender<CmdJob>,
}Expand description
Result of a successful autodetect-then-connect flow.
Fields§
§template_name: String§report: TemplateDetectReport§sender: Sender<CmdJob>Implementations§
Source§impl AutodetectedConnection
impl AutodetectedConnection
pub fn new( sender: Sender<CmdJob>, report: TemplateDetectReport, ) -> Result<Self, ConnectError>
Auto Trait Implementations§
impl Freeze for AutodetectedConnection
impl RefUnwindSafe for AutodetectedConnection
impl Send for AutodetectedConnection
impl Sync for AutodetectedConnection
impl Unpin for AutodetectedConnection
impl UnsafeUnpin for AutodetectedConnection
impl UnwindSafe for AutodetectedConnection
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