pub struct ClientProviderProxy { /* private fields */ }Implementations§
Source§impl ClientProviderProxy
impl ClientProviderProxy
Sourcepub fn take_event_stream(&self) -> ClientProviderEventStream
pub fn take_event_stream(&self) -> ClientProviderEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
Sourcepub fn new_client(
&self,
interface_id: u64,
params: &NewClientParams,
request: ServerEnd<ClientMarker>,
) -> Result<(), Error>
pub fn new_client( &self, interface_id: u64, params: &NewClientParams, request: ServerEnd<ClientMarker>, ) -> Result<(), Error>
Provides a DHCPv4 client.
- request
paramsthe parameters to create the client with. - request
requestgrants control over the client.
Sourcepub fn check_presence(&self) -> QueryResponseFut<(), FDomainResourceDialect>
pub fn check_presence(&self) -> QueryResponseFut<(), FDomainResourceDialect>
No-op method that allows checking for presence.
TODO(https://fxbug.dev/296283299): It’s not currently possible for a client with an optionally-provided protocol to check whether there’s someone on the other end without making a FIDL call . This method provides a workaround by giving a client a method that it can call to check for liveness.
TODO(https://fxbug.dev/42076541): Remove this once the DHCP out-of-stack client is always being used.
Trait Implementations§
Source§impl ClientProviderProxyInterface for ClientProviderProxy
impl ClientProviderProxyInterface for ClientProviderProxy
type CheckPresenceResponseFut = QueryResponseFut<(), FDomainResourceDialect>
fn new_client( &self, interface_id: u64, params: &NewClientParams, request: ServerEnd<ClientMarker>, ) -> Result<(), Error>
fn check_presence(&self) -> Self::CheckPresenceResponseFut
Source§impl Clone for ClientProviderProxy
impl Clone for ClientProviderProxy
Source§fn clone(&self) -> ClientProviderProxy
fn clone(&self) -> ClientProviderProxy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClientProviderProxy
impl Debug for ClientProviderProxy
Source§impl Proxy for ClientProviderProxy
impl Proxy for ClientProviderProxy
Source§type Protocol = ClientProviderMarker
type Protocol = ClientProviderMarker
The protocol which this
Proxy controls.Source§fn from_channel(inner: Channel) -> Self
fn from_channel(inner: Channel) -> Self
Create a proxy over the given channel.
Source§fn into_channel(self) -> Result<Channel, Self>
fn into_channel(self) -> Result<Channel, Self>
Attempt to convert the proxy back into a channel. Read more
Source§fn as_channel(&self) -> &Channel
fn as_channel(&self) -> &Channel
Get a reference to the proxy’s underlying channel. Read more
Source§fn domain(&self) -> Arc<Client>
fn domain(&self) -> Arc<Client>
Get the client supporting this proxy. We call this a “domain” here because: Read more
Source§fn on_closed(&self) -> OnFDomainSignals
fn on_closed(&self) -> OnFDomainSignals
Returns a future that completes when the server receives the
PEER_CLOSED signal.Auto Trait Implementations§
impl Freeze for ClientProviderProxy
impl !RefUnwindSafe for ClientProviderProxy
impl Send for ClientProviderProxy
impl Sync for ClientProviderProxy
impl Unpin for ClientProviderProxy
impl UnsafeUnpin for ClientProviderProxy
impl !UnwindSafe for ClientProviderProxy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]