pub struct RouteTableV4SynchronousProxy { /* private fields */ }
Implementations§
Source§impl RouteTableV4SynchronousProxy
impl RouteTableV4SynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<RouteTableV4Event, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<RouteTableV4Event, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn get_table_id(&self, ___deadline: MonotonicInstant) -> Result<u32, Error>
pub fn get_table_id(&self, ___deadline: MonotonicInstant) -> Result<u32, Error>
Gets the table ID for this table.
Sourcepub fn detach(&self) -> Result<(), Error>
pub fn detach(&self) -> Result<(), Error>
Detaches the lifetime of the route table from the lifetime of the client end of the channel.
After this method is called, the route table will not be removed if the client end is closed. It’s a no-op if called on the main table.
Sourcepub fn remove(
&self,
___deadline: MonotonicInstant,
) -> Result<BaseRouteTableRemoveResult, Error>
pub fn remove( &self, ___deadline: MonotonicInstant, ) -> Result<BaseRouteTableRemoveResult, Error>
Removes the route table explicitly.
This method cannot be called on the main table, an error will be returned if called. The server will close the channel after this method successfully returns.
Gets an authentication credential for this table.
The credential contains a [zx::handle::EVENT
], whose duplicate is
held by the server. This credential can be passed into
fuchsia.net.routes.admin
API calls to prove ownership of this route
table. The EVENT
is stable throughout the lifetime of the route table.
Clients may duplicate this EVENT
to make multiple API calls, or
transfer the EVENT
to other clients.
- response
credential
the authorization credential for this table.
Sourcepub fn new_route_set(
&self,
route_set: ServerEnd<RouteSetV4Marker>,
) -> Result<(), Error>
pub fn new_route_set( &self, route_set: ServerEnd<RouteSetV4Marker>, ) -> Result<(), Error>
Creates an empty route set.
- request
route_set
grants access to the [RouteSetV4
] protocol.
Trait Implementations§
Source§impl Debug for RouteTableV4SynchronousProxy
impl Debug for RouteTableV4SynchronousProxy
Source§impl SynchronousProxy for RouteTableV4SynchronousProxy
impl SynchronousProxy for RouteTableV4SynchronousProxy
Source§type Proxy = RouteTableV4Proxy
type Proxy = RouteTableV4Proxy
Source§type Protocol = RouteTableV4Marker
type Protocol = RouteTableV4Marker
Proxy
controls.