pub enum ConnectorRequest {
EstablishCircuit {
id: u64,
socket: Socket,
responder: ConnectorEstablishCircuitResponder,
},
FdomainToolboxSocket {
socket: Socket,
responder: ConnectorFdomainToolboxSocketResponder,
},
}
Variants§
Implementations§
Source§impl ConnectorRequest
impl ConnectorRequest
pub fn into_establish_circuit( self, ) -> Option<(u64, Socket, ConnectorEstablishCircuitResponder)>
pub fn into_fdomain_toolbox_socket( self, ) -> Option<(Socket, ConnectorFdomainToolboxSocketResponder)>
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