pub struct LocalServer { /* private fields */ }Implementations§
Source§impl LocalServer
impl LocalServer
pub fn new( url: &str, channel_size: ChannelSize, max_connections: u64, max_listeners: u64, ) -> Result<LocalServer, ErrorCode>
pub fn wait( &mut self, swap_target: SysHandle, extra_waiters: &[SysHandle], ) -> Result<Vec<SysHandle>, Vec<SysHandle>>
pub fn get_connection( &mut self, handle: SysHandle, ) -> Option<&mut LocalServerConnection>
Auto Trait Implementations§
impl Freeze for LocalServer
impl !RefUnwindSafe for LocalServer
impl !Send for LocalServer
impl !Sync for LocalServer
impl Unpin for LocalServer
impl !UnwindSafe for LocalServer
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