pub enum SvcStashRequest {
Store {
svc_endpoint: ServerEnd<DirectoryMarker>,
control_handle: SvcStashControlHandle,
},
}
Expand description
Protocol for storing svc server ends of ‘svc’ for later processing during early boot.
Variants§
Store
Store a svc_endpoint in the stash. Stored endpoints will remain in transit, since there might not be a server side implementation. The server end is retrieved by |SvcStashProvider/Get|.
Implementations§
Source§impl SvcStashRequest
impl SvcStashRequest
pub fn into_store( self, ) -> Option<(ServerEnd<DirectoryMarker>, SvcStashControlHandle)>
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 SvcStashRequest
impl !RefUnwindSafe for SvcStashRequest
impl Send for SvcStashRequest
impl Sync for SvcStashRequest
impl Unpin for SvcStashRequest
impl !UnwindSafe for SvcStashRequest
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