pub enum BinderRequest {}
Expand description
A framework-provided protocol that allows components that use it to bind to the component that exposes it. The act of connecting to this protocol will trigger the bind. Thus, this protocol contains no methods. For more details on binding, see https://fuchsia.dev/fuchsia-src/concepts/components/v2/lifecycle#binding.
When a component connects to protocol, the component exposing this capability will be started if it’s not already running. Upon a failure to start, the component framework will close the server end of the channel with a zx.Status epitaph.
Implementations§
source§impl BinderRequest
impl BinderRequest
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 BinderRequest
impl RefUnwindSafe for BinderRequest
impl Send for BinderRequest
impl Sync for BinderRequest
impl Unpin for BinderRequest
impl UnwindSafe for BinderRequest
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