pub enum BeaconInfoStreamRequest {
Next {
responder: BeaconInfoStreamNextResponder,
},
}
Expand description
Protocol for returning the results of a network scan operation.
Closing the client end of an instance of this protocol will effectively cancel the scan operation.
Variants§
Next
Called to fetch the next set of received beacons.
The last set will have zero items. Once all received beacons have been returned, this channel will close.
Fields
§
responder: BeaconInfoStreamNextResponder
Implementations§
Source§impl BeaconInfoStreamRequest
impl BeaconInfoStreamRequest
pub fn into_next(self) -> Option<BeaconInfoStreamNextResponder>
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 BeaconInfoStreamRequest
impl !RefUnwindSafe for BeaconInfoStreamRequest
impl Send for BeaconInfoStreamRequest
impl Sync for BeaconInfoStreamRequest
impl Unpin for BeaconInfoStreamRequest
impl !UnwindSafe for BeaconInfoStreamRequest
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