pub struct LogPuppetSynchronousProxy { /* private fields */ }
Implementations§
Source§impl LogPuppetSynchronousProxy
impl LogPuppetSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<LogPuppetEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<LogPuppetEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn println(
&self,
message: &str,
___deadline: MonotonicInstant,
) -> Result<(), Error>
pub fn println( &self, message: &str, ___deadline: MonotonicInstant, ) -> Result<(), Error>
Prints a message to stdout and appends a newline.
Sourcepub fn eprintln(
&self,
message: &str,
___deadline: MonotonicInstant,
) -> Result<(), Error>
pub fn eprintln( &self, message: &str, ___deadline: MonotonicInstant, ) -> Result<(), Error>
Prints a message stderr and appends a newline.
Sourcepub fn log(
&self,
payload: &LogPuppetLogRequest,
___deadline: MonotonicInstant,
) -> Result<(), Error>
pub fn log( &self, payload: &LogPuppetLogRequest, ___deadline: MonotonicInstant, ) -> Result<(), Error>
Emits a tracing event at the specified severity level.
Sourcepub fn wait_for_interest_change(
&self,
___deadline: MonotonicInstant,
) -> Result<LogPuppetWaitForInterestChangeResponse, Error>
pub fn wait_for_interest_change( &self, ___deadline: MonotonicInstant, ) -> Result<LogPuppetWaitForInterestChangeResponse, Error>
Blocks the caller until the next time an interest change event is observed. Messages are lost if they are emitted using LogPuppet.Log before the puppet has observed the the interest change.
Trait Implementations§
Source§impl Debug for LogPuppetSynchronousProxy
impl Debug for LogPuppetSynchronousProxy
Source§impl SynchronousProxy for LogPuppetSynchronousProxy
impl SynchronousProxy for LogPuppetSynchronousProxy
Source§type Proxy = LogPuppetProxy
type Proxy = LogPuppetProxy
The async proxy for the same protocol.
Source§type Protocol = LogPuppetMarker
type Protocol = LogPuppetMarker
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 LogPuppetSynchronousProxy
impl RefUnwindSafe for LogPuppetSynchronousProxy
impl Send for LogPuppetSynchronousProxy
impl Sync for LogPuppetSynchronousProxy
impl Unpin for LogPuppetSynchronousProxy
impl UnwindSafe for LogPuppetSynchronousProxy
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