pub struct WeakPathHandle { /* private fields */ }Expand description
Weak handle for a Path that does not keep the connection alive.
As long as a WeakPathHandle for a path exists, that path’s final stats will not be dropped even if
the path was abandoned.
The WeakPathHandle can be upgraded to a Path as long as its Connection has not been dropped.
Implementations§
Trait Implementations§
Source§impl Clone for WeakPathHandle
impl Clone for WeakPathHandle
Source§impl Debug for WeakPathHandle
impl Debug for WeakPathHandle
Source§impl Drop for WeakPathHandle
impl Drop for WeakPathHandle
Source§impl PartialEq for WeakPathHandle
impl PartialEq for WeakPathHandle
impl Eq for WeakPathHandle
Auto Trait Implementations§
impl Freeze for WeakPathHandle
impl RefUnwindSafe for WeakPathHandle
impl Send for WeakPathHandle
impl Sync for WeakPathHandle
impl Unpin for WeakPathHandle
impl UnsafeUnpin for WeakPathHandle
impl UnwindSafe for WeakPathHandle
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