pub type ControllerProxy = ClientSender<Channel, Controller>;
Expand description
An alias for a client sender over zx::Channel
for the Controller
protocol.
Aliased Type§
pub struct ControllerProxy { /* private fields */ }
Implementations
§impl<P, T> ClientSender<P, T>where
T: Transport,
impl<P, T> ClientSender<P, T>where
T: Transport,
pub fn wrap_untyped(client: &ClientSender<T>) -> &ClientSender<P, T>
pub fn wrap_untyped(client: &ClientSender<T>) -> &ClientSender<P, T>
Wraps an untyped sender reference, returning a typed sender reference.
pub fn as_untyped(&self) -> &ClientSender<T>
pub fn as_untyped(&self) -> &ClientSender<T>
Returns the underlying untyped sender.
pub fn close(&self)
pub fn close(&self)
Closes the channel from the client end.