pub enum BoardRequest {
GetInfo {
responder: BoardGetInfoResponder,
},
}
Expand description
Board provides an interface to retrieve hardware-specific information.
Variants§
GetInfo
Fields
§
responder: BoardGetInfoResponder
Implementations§
Source§impl BoardRequest
impl BoardRequest
pub fn into_get_info(self) -> Option<BoardGetInfoResponder>
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 BoardRequest
impl !RefUnwindSafe for BoardRequest
impl Send for BoardRequest
impl Sync for BoardRequest
impl Unpin for BoardRequest
impl !UnwindSafe for BoardRequest
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