pub enum MiscFactoryStoreProviderRequest {
GetFactoryStore {
dir: ServerEnd<DirectoryMarker>,
control_handle: MiscFactoryStoreProviderControlHandle,
},
}
Expand description
This protocol exposes a method to connect to a directory containing miscellaneous factory data such as tuning/calibration files, region-specific audio files, factory process metadata files, and more. Any raw files not covered by other FactoryStoreProviders or methods in fuchsia.hwinfo will appear here.
Variants§
GetFactoryStore
Implementations§
Source§impl MiscFactoryStoreProviderRequest
impl MiscFactoryStoreProviderRequest
pub fn into_get_factory_store( self, ) -> Option<(ServerEnd<DirectoryMarker>, MiscFactoryStoreProviderControlHandle)>
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 MiscFactoryStoreProviderRequest
impl !RefUnwindSafe for MiscFactoryStoreProviderRequest
impl Send for MiscFactoryStoreProviderRequest
impl Sync for MiscFactoryStoreProviderRequest
impl Unpin for MiscFactoryStoreProviderRequest
impl !UnwindSafe for MiscFactoryStoreProviderRequest
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