pub struct RouteTableV6Proxy { /* private fields */ }
Implementations§
Source§impl RouteTableV6Proxy
impl RouteTableV6Proxy
Sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.net.routes.admin/RouteTableV6.
Sourcepub fn take_event_stream(&self) -> RouteTableV6EventStream
pub fn take_event_stream(&self) -> RouteTableV6EventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn get_table_id(
&self,
) -> QueryResponseFut<u32, DefaultFuchsiaResourceDialect>
pub fn get_table_id( &self, ) -> QueryResponseFut<u32, DefaultFuchsiaResourceDialect>
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,
) -> QueryResponseFut<BaseRouteTableRemoveResult, DefaultFuchsiaResourceDialect>
pub fn remove( &self, ) -> QueryResponseFut<BaseRouteTableRemoveResult, DefaultFuchsiaResourceDialect>
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<RouteSetV6Marker>,
) -> Result<(), Error>
pub fn new_route_set( &self, route_set: ServerEnd<RouteSetV6Marker>, ) -> Result<(), Error>
Creates an empty route set.
- request
route_set
grants access to the [RouteSetV6
] protocol.
Trait Implementations§
Source§impl Clone for RouteTableV6Proxy
impl Clone for RouteTableV6Proxy
Source§fn clone(&self) -> RouteTableV6Proxy
fn clone(&self) -> RouteTableV6Proxy
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RouteTableV6Proxy
impl Debug for RouteTableV6Proxy
Source§impl Proxy for RouteTableV6Proxy
impl Proxy for RouteTableV6Proxy
Source§type Protocol = RouteTableV6Marker
type Protocol = RouteTableV6Marker
Proxy
controls.Source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Source§impl RouteTableV6ProxyInterface for RouteTableV6Proxy
impl RouteTableV6ProxyInterface for RouteTableV6Proxy
type GetTableIdResponseFut = QueryResponseFut<u32>
type RemoveResponseFut = QueryResponseFut<Result<(), BaseRouteTableRemoveError>>
type GetAuthorizationForRouteTableResponseFut = QueryResponseFut<GrantForRouteTableAuthorization>
fn get_table_id(&self) -> Self::GetTableIdResponseFut
fn detach(&self) -> Result<(), Error>
fn remove(&self) -> Self::RemoveResponseFut
fn new_route_set( &self, route_set: ServerEnd<RouteSetV6Marker>, ) -> Result<(), Error>
Auto Trait Implementations§
impl Freeze for RouteTableV6Proxy
impl !RefUnwindSafe for RouteTableV6Proxy
impl Send for RouteTableV6Proxy
impl Sync for RouteTableV6Proxy
impl Unpin for RouteTableV6Proxy
impl !UnwindSafe for RouteTableV6Proxy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)