pub enum SvcStashProviderRequest {
Get {
responder: SvcStashProviderGetResponder,
},
}
Expand description
Protocol for providing the server end of the ‘SvcStash’.
Variants§
Get
Get the SvcStash server endpoint.
There is at most one instance for the system, meaning only the first caller may consume the handle.
Fields
§
responder: SvcStashProviderGetResponder
Implementations§
Source§impl SvcStashProviderRequest
impl SvcStashProviderRequest
pub fn into_get(self) -> Option<SvcStashProviderGetResponder>
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 SvcStashProviderRequest
impl !RefUnwindSafe for SvcStashProviderRequest
impl Send for SvcStashProviderRequest
impl Sync for SvcStashProviderRequest
impl Unpin for SvcStashProviderRequest
impl !UnwindSafe for SvcStashProviderRequest
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