pub struct OutboundAdapterOptions {
pub name: Option<String>,
pub retry: RetryPolicy,
}Expand description
OutboundAdapterOptions data container.
Fields§
§name: Option<String>name field for name.
retry: RetryPolicyretry field for retry.
Trait Implementations§
Source§impl Clone for OutboundAdapterOptions
impl Clone for OutboundAdapterOptions
Source§fn clone(&self) -> OutboundAdapterOptions
fn clone(&self) -> OutboundAdapterOptions
Returns a duplicate 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 Default for OutboundAdapterOptions
impl Default for OutboundAdapterOptions
Source§fn default() -> OutboundAdapterOptions
fn default() -> OutboundAdapterOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OutboundAdapterOptions
impl RefUnwindSafe for OutboundAdapterOptions
impl Send for OutboundAdapterOptions
impl Sync for OutboundAdapterOptions
impl Unpin for OutboundAdapterOptions
impl UnsafeUnpin for OutboundAdapterOptions
impl UnwindSafe for OutboundAdapterOptions
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