pub enum ConnectorRequest {
Connect {
request: ServerEnd<MlmeMarker>,
control_handle: ConnectorControlHandle,
},
}
Expand description
This protocol is used to connect to the interface’s underlying MLME.
Variants§
Connect
Implementations§
Source§impl ConnectorRequest
impl ConnectorRequest
pub fn into_connect( self, ) -> Option<(ServerEnd<MlmeMarker>, ConnectorControlHandle)>
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 ConnectorRequest
impl !RefUnwindSafe for ConnectorRequest
impl Send for ConnectorRequest
impl Sync for ConnectorRequest
impl Unpin for ConnectorRequest
impl !UnwindSafe for ConnectorRequest
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