pub struct DeviceConnectorSynchronousProxy { /* private fields */ }
Implementations§
Source§impl DeviceConnectorSynchronousProxy
impl DeviceConnectorSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<DeviceConnectorEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<DeviceConnectorEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn connect_to_device_info(
&self,
device_info_request: ServerEnd<DeviceInfoMarker>,
) -> Result<(), Error>
pub fn connect_to_device_info( &self, device_info_request: ServerEnd<DeviceInfoMarker>, ) -> Result<(), Error>
Requests a DeviceInfo
connection to the TEE driver to enumerate device info.
The sole caller of this should be the TEE Manager.
Sourcepub fn connect_to_application(
&self,
application_uuid: &Uuid,
service_provider: Option<ClientEnd<ProviderMarker>>,
application_request: ServerEnd<ApplicationMarker>,
) -> Result<(), Error>
pub fn connect_to_application( &self, application_uuid: &Uuid, service_provider: Option<ClientEnd<ProviderMarker>>, application_request: ServerEnd<ApplicationMarker>, ) -> Result<(), Error>
Requests an Application
connection from the TEE driver while the caller provides a client
channel end to a Provider
server that supports the driver on any RPCs.
The sole caller of this should be the TEE Manager.
Trait Implementations§
Source§impl SynchronousProxy for DeviceConnectorSynchronousProxy
impl SynchronousProxy for DeviceConnectorSynchronousProxy
Source§type Proxy = DeviceConnectorProxy
type Proxy = DeviceConnectorProxy
The async proxy for the same protocol.
Source§type Protocol = DeviceConnectorMarker
type Protocol = DeviceConnectorMarker
The protocol which this
Proxy
controls.Source§fn from_channel(inner: Channel) -> Self
fn from_channel(inner: Channel) -> Self
Create a proxy over the given channel.
Source§fn into_channel(self) -> Channel
fn into_channel(self) -> Channel
Convert the proxy back into a channel.
Source§fn as_channel(&self) -> &Channel
fn as_channel(&self) -> &Channel
Get a reference to the proxy’s underlying channel. Read more
Auto Trait Implementations§
impl Freeze for DeviceConnectorSynchronousProxy
impl RefUnwindSafe for DeviceConnectorSynchronousProxy
impl Send for DeviceConnectorSynchronousProxy
impl Sync for DeviceConnectorSynchronousProxy
impl Unpin for DeviceConnectorSynchronousProxy
impl UnwindSafe for DeviceConnectorSynchronousProxy
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