pub enum ProviderRequest {
RequestPersistentStorage {
dir: ServerEnd<DirectoryMarker>,
control_handle: ProviderControlHandle,
},
}
Expand description
Provider provides service access and support to the TEE driver for things like persistent storage, since the TEE may make upward RPC-like requests to the REE.
Variants§
RequestPersistentStorage
Implementations§
Source§impl ProviderRequest
impl ProviderRequest
pub fn into_request_persistent_storage( self, ) -> Option<(ServerEnd<DirectoryMarker>, ProviderControlHandle)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProviderRequest
impl !RefUnwindSafe for ProviderRequest
impl Send for ProviderRequest
impl Sync for ProviderRequest
impl Unpin for ProviderRequest
impl !UnwindSafe for ProviderRequest
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