pub struct PuppetSynchronousProxy { /* private fields */ }
Implementations§
Source§impl PuppetSynchronousProxy
impl PuppetSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<PuppetEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<PuppetEvent, 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 create_inspector(
&self,
payload: &InspectPuppetCreateInspectorRequest,
___deadline: MonotonicInstant,
) -> Result<ClientEnd<InspectWriterMarker>, Error>
pub fn create_inspector( &self, payload: &InspectPuppetCreateInspectorRequest, ___deadline: MonotonicInstant, ) -> Result<ClientEnd<InspectWriterMarker>, Error>
Create and serve an Inspector with the provided name. InspectWriters created this way are RAII.
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.
Sourcepub fn record_lazy_values(
&self,
key: &str,
___deadline: MonotonicInstant,
) -> Result<ClientEnd<LazyInspectPuppetMarker>, Error>
pub fn record_lazy_values( &self, key: &str, ___deadline: MonotonicInstant, ) -> Result<ClientEnd<LazyInspectPuppetMarker>, Error>
Returns a LazyInspectPuppet client for recording lazy values.
Trait Implementations§
Source§impl Debug for PuppetSynchronousProxy
impl Debug for PuppetSynchronousProxy
Source§impl SynchronousProxy for PuppetSynchronousProxy
impl SynchronousProxy for PuppetSynchronousProxy
Source§type Proxy = PuppetProxy
type Proxy = PuppetProxy
The async proxy for the same protocol.
Source§type Protocol = PuppetMarker
type Protocol = PuppetMarker
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 PuppetSynchronousProxy
impl RefUnwindSafe for PuppetSynchronousProxy
impl Send for PuppetSynchronousProxy
impl Sync for PuppetSynchronousProxy
impl Unpin for PuppetSynchronousProxy
impl UnwindSafe for PuppetSynchronousProxy
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