pub struct EventStreamSynchronousProxy { /* private fields */ }
Implementations§
source§impl EventStreamSynchronousProxy
impl EventStreamSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<EventStreamEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<EventStreamEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
pub fn get_next( &self, ___deadline: MonotonicInstant, ) -> Result<Vec<Event>, Error>
sourcepub fn wait_for_ready(&self, ___deadline: MonotonicInstant) -> Result<(), Error>
pub fn wait_for_ready(&self, ___deadline: MonotonicInstant) -> Result<(), Error>
Returns immediately. Used to indicate that the FIDL connection completed. This is needed for non-static streams to verify that subscribe has completed before components are started.
Trait Implementations§
source§impl Debug for EventStreamSynchronousProxy
impl Debug for EventStreamSynchronousProxy
source§impl SynchronousProxy for EventStreamSynchronousProxy
impl SynchronousProxy for EventStreamSynchronousProxy
§type Proxy = EventStreamProxy
type Proxy = EventStreamProxy
The async proxy for the same protocol.
§type Protocol = EventStreamMarker
type Protocol = EventStreamMarker
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) -> Channel
fn into_channel(self) -> Channel
Convert the proxy back into a channel.
source§fn as_channel(&self) -> &Channel
fn as_channel(&self) -> &Channel
Get a reference to the proxy’s underlying channel. Read more
Auto Trait Implementations§
impl Freeze for EventStreamSynchronousProxy
impl RefUnwindSafe for EventStreamSynchronousProxy
impl Send for EventStreamSynchronousProxy
impl Sync for EventStreamSynchronousProxy
impl Unpin for EventStreamSynchronousProxy
impl UnwindSafe for EventStreamSynchronousProxy
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