pub enum FactoryStoreProviderRequest {
GetFactoryStore {
dir: ServerEnd<DirectoryMarker>,
control_handle: FactoryStoreProviderControlHandle,
},
}
Expand description
This protocol is a base protocol for all providers of factory store directories. It exposes a single method to allow clients to establish a connection to a directory containing the relevant factory data. All files surfaced by a component that implements FactoryStoreProvider (or any protocol that depends on it) are expected to be validated for consistency before being exposed to clients.
Variants§
GetFactoryStore
Implementations§
Source§impl FactoryStoreProviderRequest
impl FactoryStoreProviderRequest
pub fn into_get_factory_store( self, ) -> Option<(ServerEnd<DirectoryMarker>, FactoryStoreProviderControlHandle)>
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 FactoryStoreProviderRequest
impl !RefUnwindSafe for FactoryStoreProviderRequest
impl Send for FactoryStoreProviderRequest
impl Sync for FactoryStoreProviderRequest
impl Unpin for FactoryStoreProviderRequest
impl !UnwindSafe for FactoryStoreProviderRequest
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