pub enum SenderAlgorithmAction {
WaitUntilAck,
WaitForData,
WaitUntil(Instant),
Close,
}Variants§
Trait Implementations§
Source§impl Clone for SenderAlgorithmAction
impl Clone for SenderAlgorithmAction
Source§fn clone(&self) -> SenderAlgorithmAction
fn clone(&self) -> SenderAlgorithmAction
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 moreAuto Trait Implementations§
impl Freeze for SenderAlgorithmAction
impl RefUnwindSafe for SenderAlgorithmAction
impl Send for SenderAlgorithmAction
impl Sync for SenderAlgorithmAction
impl Unpin for SenderAlgorithmAction
impl UnsafeUnpin for SenderAlgorithmAction
impl UnwindSafe for SenderAlgorithmAction
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