pub enum BusServiceRequest {
Bus(BusRequestStream),
}Expand description
A request for one of the member protocols of BusService.
Variants§
Bus(BusRequestStream)
Trait Implementations§
Source§impl ServiceRequest for BusServiceRequest
Available on Fuchsia only.
impl ServiceRequest for BusServiceRequest
Available on Fuchsia only.
Source§type Service = BusServiceMarker
type Service = BusServiceMarker
The FIDL service for which this request is destined.
Source§fn dispatch(name: &str, _channel: AsyncChannel) -> Self
fn dispatch(name: &str, _channel: AsyncChannel) -> Self
Dispatches a connection attempt to this FIDL service’s member protocol
identified by
name, producing an instance of this trait.Source§fn member_names() -> &'static [&'static str]
fn member_names() -> &'static [&'static str]
Returns an array of the service members’ names.
Auto Trait Implementations§
impl Freeze for BusServiceRequest
impl !RefUnwindSafe for BusServiceRequest
impl Send for BusServiceRequest
impl Sync for BusServiceRequest
impl Unpin for BusServiceRequest
impl UnsafeUnpin for BusServiceRequest
impl !UnwindSafe for BusServiceRequest
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