pub enum EnergyScanResultStreamRequest {
Next {
responder: EnergyScanResultStreamNextResponder,
},
}
Expand description
Protocol for returning the results of an energy scan operation.
Closing the protocol will cancel the associated scan operation.
Variants§
Next
Called to fetch the next set of energy scan results.
The last set will have zero items and the protocol will be closed.
Fields
§
responder: EnergyScanResultStreamNextResponder
Implementations§
Source§impl EnergyScanResultStreamRequest
impl EnergyScanResultStreamRequest
pub fn into_next(self) -> Option<EnergyScanResultStreamNextResponder>
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 EnergyScanResultStreamRequest
impl !RefUnwindSafe for EnergyScanResultStreamRequest
impl Send for EnergyScanResultStreamRequest
impl Sync for EnergyScanResultStreamRequest
impl Unpin for EnergyScanResultStreamRequest
impl !UnwindSafe for EnergyScanResultStreamRequest
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