pub enum NetworkConfigIteratorRequest {
GetNext {
responder: NetworkConfigIteratorGetNextResponder,
},
}
Expand description
Iterator used by callers to retrieve saved network information.
Variants§
GetNext
Method allowing the next block of saved networks to be handled.
Fields
§
responder: NetworkConfigIteratorGetNextResponder
Implementations§
Source§impl NetworkConfigIteratorRequest
impl NetworkConfigIteratorRequest
pub fn into_get_next(self) -> Option<NetworkConfigIteratorGetNextResponder>
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 NetworkConfigIteratorRequest
impl !RefUnwindSafe for NetworkConfigIteratorRequest
impl Send for NetworkConfigIteratorRequest
impl Sync for NetworkConfigIteratorRequest
impl Unpin for NetworkConfigIteratorRequest
impl !UnwindSafe for NetworkConfigIteratorRequest
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