pub enum DirConnectorRouterRequest {
Clone {
request: ServerEnd<CloneableMarker>,
control_handle: DirConnectorRouterControlHandle,
},
Route {
request: RouteRequest,
dir_connector_server_end: ServerEnd<DirConnectorMarker>,
responder: DirConnectorRouterRouteResponder,
},
_UnknownMethod {
ordinal: u64,
control_handle: DirConnectorRouterControlHandle,
method_type: MethodType,
},
}
Expand description
A factory for DirConnector
capabilities.
Variants§
Clone
Route
Attempts to produce a DirConnector
capability from this
DirConnectorRouter
. This will return:
- A
DirConnector
if the operation is successful. - An empty value if there is no issue found but the capability is not being provided (for example, an optional route ended in an offer from void).
- An error, if the operation failed.
Fields
§
request: RouteRequest
§
dir_connector_server_end: ServerEnd<DirConnectorMarker>
§
responder: DirConnectorRouterRouteResponder
_UnknownMethod
An interaction was received which does not match any known method.
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
§
control_handle: DirConnectorRouterControlHandle
§
method_type: MethodType
Implementations§
Source§impl DirConnectorRouterRequest
impl DirConnectorRouterRequest
pub fn into_clone( self, ) -> Option<(ServerEnd<CloneableMarker>, DirConnectorRouterControlHandle)>
pub fn into_route( self, ) -> Option<(RouteRequest, ServerEnd<DirConnectorMarker>, DirConnectorRouterRouteResponder)>
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 DirConnectorRouterRequest
impl !RefUnwindSafe for DirConnectorRouterRequest
impl Send for DirConnectorRouterRequest
impl Sync for DirConnectorRouterRequest
impl Unpin for DirConnectorRouterRequest
impl !UnwindSafe for DirConnectorRouterRequest
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