pub struct UDSMsgClient<T> { /* private fields */ }
Implementations§
Source§impl<T> UDSMsgClient<T>
impl<T> UDSMsgClient<T>
Sourcepub fn new(path_name: &str, client_name: &str) -> UDSMsgClient<T>
pub fn new(path_name: &str, client_name: &str) -> UDSMsgClient<T>
addr is socket address. like: 127.0.0.1:6666. name is the client’s name, to identity which client it is.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for UDSMsgClient<T>
impl<T> RefUnwindSafe for UDSMsgClient<T>where
T: RefUnwindSafe,
impl<T> Send for UDSMsgClient<T>where
T: Send,
impl<T> Sync for UDSMsgClient<T>where
T: Sync,
impl<T> Unpin for UDSMsgClient<T>where
T: Unpin,
impl<T> UnwindSafe for UDSMsgClient<T>where
T: UnwindSafe,
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