pub enum RetransmitStrategy {
Reliable,
Unreliable,
Deadline {
limit: u64,
},
}
Variants§
Auto Trait Implementations§
impl Freeze for RetransmitStrategy
impl RefUnwindSafe for RetransmitStrategy
impl Send for RetransmitStrategy
impl Sync for RetransmitStrategy
impl Unpin for RetransmitStrategy
impl UnwindSafe for RetransmitStrategy
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