pub struct SecureServiceProxy(/* private fields */);
Implementations§
Source§impl SecureServiceProxy
impl SecureServiceProxy
pub fn connect_to_device(&self) -> Result<SecureFastRpcProxy, Error>
Sourcepub fn connect_to_device_sync(
&self,
) -> Result<SecureFastRpcSynchronousProxy, Error>
pub fn connect_to_device_sync( &self, ) -> Result<SecureFastRpcSynchronousProxy, Error>
Like connect_to_device
, but returns a sync proxy.
See Self::connect_to_device
for more details.
Sourcepub fn connect_channel_to_device(
&self,
server_end: ServerEnd<SecureFastRpcMarker>,
) -> Result<(), Error>
pub fn connect_channel_to_device( &self, server_end: ServerEnd<SecureFastRpcMarker>, ) -> Result<(), Error>
Like connect_to_device
, but accepts a server end.
See Self::connect_to_device
for more details.
pub fn instance_name(&self) -> &str
Trait Implementations§
Source§impl ServiceProxy for SecureServiceProxy
impl ServiceProxy for SecureServiceProxy
Source§type Service = SecureServiceMarker
type Service = SecureServiceMarker
The FIDL service this proxy represents.
Auto Trait Implementations§
impl Freeze for SecureServiceProxy
impl !RefUnwindSafe for SecureServiceProxy
impl Send for SecureServiceProxy
impl Sync for SecureServiceProxy
impl Unpin for SecureServiceProxy
impl !UnwindSafe for SecureServiceProxy
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