pub enum DriverListsRequest {
GetDriverLists {
responder: DriverListsGetDriverListsResponder,
},
}
Expand description
This protocol is served when running with the driver_test_realm to be used by the driver index to dynamically get the list of drivers.
Variants§
GetDriverLists
Fields
§
responder: DriverListsGetDriverListsResponder
Implementations§
Source§impl DriverListsRequest
impl DriverListsRequest
pub fn into_get_driver_lists(self) -> Option<DriverListsGetDriverListsResponder>
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 DriverListsRequest
impl !RefUnwindSafe for DriverListsRequest
impl Send for DriverListsRequest
impl Sync for DriverListsRequest
impl Unpin for DriverListsRequest
impl !UnwindSafe for DriverListsRequest
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