Struct ockam_node::MessageSendReceiveOptions
source · pub struct MessageSendReceiveOptions { /* private fields */ }Expand description
Full set of options to send_and_receive_extended function
Implementations§
source§impl MessageSendReceiveOptions
impl MessageSendReceiveOptions
sourcepub fn new() -> Self
pub fn new() -> Self
Default options with DEFAULT_TIMEOUT and no flow control
sourcepub fn with_timeout(self, timeout: Duration) -> Self
pub fn with_timeout(self, timeout: Duration) -> Self
Set custom timeout
sourcepub fn without_timeout(self) -> Self
pub fn without_timeout(self) -> Self
Wait for the message forever
sourcepub fn with_flow_control(self, flow_controls: &FlowControls) -> Self
pub fn with_flow_control(self, flow_controls: &FlowControls) -> Self
Set flow_controls to be able to receive a response
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for MessageSendReceiveOptions
impl Send for MessageSendReceiveOptions
impl Sync for MessageSendReceiveOptions
impl Unpin for MessageSendReceiveOptions
impl UnwindSafe for MessageSendReceiveOptions
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