pub enum UpstreamDial {
Initiated,
Established,
}Expand description
Outcome of an upstream dial.
Variants§
Initiated
Connect queued; completion arrives asynchronously.
Established
Connected synchronously — the handler may proceed immediately.
Trait Implementations§
Source§impl Clone for UpstreamDial
impl Clone for UpstreamDial
impl Copy for UpstreamDial
Source§impl Debug for UpstreamDial
impl Debug for UpstreamDial
impl Eq for UpstreamDial
Source§impl PartialEq for UpstreamDial
impl PartialEq for UpstreamDial
impl StructuralPartialEq for UpstreamDial
Auto Trait Implementations§
impl Freeze for UpstreamDial
impl RefUnwindSafe for UpstreamDial
impl Send for UpstreamDial
impl Sync for UpstreamDial
impl Unpin for UpstreamDial
impl UnsafeUnpin for UpstreamDial
impl UnwindSafe for UpstreamDial
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