pub enum RootJobRequest {
Get {
responder: RootJobGetResponder,
},
}
Expand description
Protocol for providing the root job.
TODO(https://fxbug.dev/42109098): Do not use this without first consulting the Zircon team.
Variants§
Implementations§
Source§impl RootJobRequest
impl RootJobRequest
pub fn into_get(self) -> Option<RootJobGetResponder>
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 RootJobRequest
impl !RefUnwindSafe for RootJobRequest
impl Send for RootJobRequest
impl Sync for RootJobRequest
impl Unpin for RootJobRequest
impl !UnwindSafe for RootJobRequest
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