pub struct ViewControllerProxy { /* private fields */ }
Implementations§
source§impl ViewControllerProxy
impl ViewControllerProxy
sourcepub fn take_event_stream(&self) -> ViewControllerEventStream
pub fn take_event_stream(&self) -> ViewControllerEventStream
Get a Stream of events from the remote end of the ViewController protocol
Panics
Panics if the event stream was already taken.
sourcepub fn dismiss(&self) -> Result<(), Error>
pub fn dismiss(&self) -> Result<(), Error>
Instructs the presenter to dismiss the associated view. Once dismissed,
the ViewController
channel is closed with a ZX_OK
epitaph. At this
point, it is safe to clean up any resources (such as terminating
a component) backing the view.
Clients should call Dismiss()
prior to closing the ViewController
channel themselves.
Trait Implementations§
source§impl Clone for ViewControllerProxy
impl Clone for ViewControllerProxy
source§fn clone(&self) -> ViewControllerProxy
fn clone(&self) -> ViewControllerProxy
Returns a copy of the value. Read more
1.0.0 · 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 ViewControllerProxy
impl Debug for ViewControllerProxy
source§impl Proxy for ViewControllerProxy
impl Proxy for ViewControllerProxy
§type Protocol = ViewControllerMarker
type Protocol = ViewControllerMarker
The protocol which this
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more