pub struct SourceProxy { /* private fields */ }
Implementations§
source§impl SourceProxy
impl SourceProxy
sourcepub fn new(channel: AsyncChannel) -> Self
pub fn new(channel: AsyncChannel) -> Self
Create a new Proxy for fuchsia.diagnostics.stream/Source.
sourcepub fn take_event_stream(&self) -> SourceEventStream
pub fn take_event_stream(&self) -> SourceEventStream
Get a Stream of events from the remote end of the protocol.
Panics
Panics if the event stream was already taken.
sourcepub fn retire_buffer(&self, buffer: u64) -> Result<(), Error>
pub fn retire_buffer(&self, buffer: u64) -> Result<(), Error>
Notifies the Source
that the retriever is done reading from the buffer. If the Source
wishes it should zero the buffer’s contents and recycle it for future records. Buffers must
be re-sent via OnBufferInit
after they’re zeroed.
Trait Implementations§
source§impl Clone for SourceProxy
impl Clone for SourceProxy
source§fn clone(&self) -> SourceProxy
fn clone(&self) -> SourceProxy
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 SourceProxy
impl Debug for SourceProxy
source§impl Proxy for SourceProxy
impl Proxy for SourceProxy
§type Protocol = SourceMarker
type Protocol = SourceMarker
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
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Attempt to convert the proxy back into a client end. Read more
source§impl SourceProxyInterface for SourceProxy
impl SourceProxyInterface for SourceProxy
Auto Trait Implementations§
impl !RefUnwindSafe for SourceProxy
impl Send for SourceProxy
impl Sync for SourceProxy
impl Unpin for SourceProxy
impl !UnwindSafe for SourceProxy
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