pub struct Connection { /* private fields */ }
Implementations§
Source§impl Connection
impl Connection
Sourcepub fn new_with_identifier(port: &str, identifier: &str) -> Result<Self>
pub fn new_with_identifier(port: &str, identifier: &str) -> Result<Self>
Create a Connection, and give it an identifier.
The identifier gets inserted in the thread name, helping to identify threads when debugging.
The resulting thread name is something like “xio_tx:
pub fn new(port: &str) -> Result<Self>
pub fn get_notifications_receiver( &mut self, ) -> Result<Receiver<NotificationItem>>
pub fn get_stale_connection_receiver(&mut self) -> Result<Receiver<()>>
Trait Implementations§
Source§impl Clone for Connection
impl Clone for Connection
Source§fn clone(&self) -> Connection
fn clone(&self) -> Connection
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<Q, S> SendAndReceive<Q, S> for Connection
impl<Q, S> SendAndReceive<Q, S> for Connection
Source§impl SendAndReceive<Request, Response> for Connection
impl SendAndReceive<Request, Response> for Connection
Auto Trait Implementations§
impl Freeze for Connection
impl RefUnwindSafe for Connection
impl Send for Connection
impl Sync for Connection
impl Unpin for Connection
impl UnwindSafe for Connection
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