pub enum DeviceRequest {
GetSupportedChannels {
responder: DeviceGetSupportedChannelsResponder,
},
}
Expand description
LoWPAN Device Protocol, Experimental Methods.
This protocol provides clients with a way to control and monitor the device.
Note that aspects of the device that deal with PII must
be monitored and controlled via the [DeviceExtra
] protocol.
Variants§
GetSupportedChannels
Returns a vector of information about the channels supported by this interface.
Fields
§
responder: DeviceGetSupportedChannelsResponder
Implementations§
Source§impl DeviceRequest
impl DeviceRequest
pub fn into_get_supported_channels( self, ) -> Option<DeviceGetSupportedChannelsResponder>
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 DeviceRequest
impl !RefUnwindSafe for DeviceRequest
impl Send for DeviceRequest
impl Sync for DeviceRequest
impl Unpin for DeviceRequest
impl !UnwindSafe for DeviceRequest
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