pub enum LibraryLoaderCacheRequest {
Serve {
loader: ServerEnd<LoaderMarker>,
control_handle: LibraryLoaderCacheControlHandle,
},
}
Expand description
Caches lib loader requests in memory.
Variants§
Serve
Serve the cache over provided handle.
Implementations§
Source§impl LibraryLoaderCacheRequest
impl LibraryLoaderCacheRequest
pub fn into_serve( self, ) -> Option<(ServerEnd<LoaderMarker>, LibraryLoaderCacheControlHandle)>
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 LibraryLoaderCacheRequest
impl !RefUnwindSafe for LibraryLoaderCacheRequest
impl Send for LibraryLoaderCacheRequest
impl Sync for LibraryLoaderCacheRequest
impl Unpin for LibraryLoaderCacheRequest
impl !UnwindSafe for LibraryLoaderCacheRequest
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