pub struct Communicator { /* private fields */ }Expand description
The Communicator is a basic object in ZeroC Ice. Currently this is more a stub that does dummy initialization.
Implementations§
Source§impl Communicator
impl Communicator
pub async fn new() -> Result<Communicator, Box<dyn Error + Sync + Send>>
pub async fn string_to_proxy( &mut self, proxy_string: &str, ) -> Result<Proxy, Box<dyn Error + Sync + Send>>
pub async fn property_to_proxy( &mut self, property: &str, ) -> Result<Proxy, Box<dyn Error + Sync + Send>>
pub async fn create_object_adapter_with_endpoint( &self, name: &str, endpoint: &str, ) -> Result<Adapter, Box<dyn Error + Sync + Send>>
Auto Trait Implementations§
impl Freeze for Communicator
impl !RefUnwindSafe for Communicator
impl Send for Communicator
impl Sync for Communicator
impl Unpin for Communicator
impl UnsafeUnpin for Communicator
impl !UnwindSafe for Communicator
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