pub enum IioRequest {
GetIioValue {
label: String,
responder: IioGetIioValueResponder,
},
}
Variants§
GetIioValue
Gets Industrial I/O (IIO) reading value. Values available depend on what the server supports. May overlap with other configs in fuchsia.power.battery, but will be cleaned up with sysfs cleanup.
Implementations§
Source§impl IioRequest
impl IioRequest
pub fn into_get_iio_value(self) -> Option<(String, IioGetIioValueResponder)>
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 IioRequest
impl !RefUnwindSafe for IioRequest
impl Send for IioRequest
impl Sync for IioRequest
impl Unpin for IioRequest
impl !UnwindSafe for IioRequest
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