pub enum Transfer {
Dts {
chunks: u32,
name: String,
},
Dat {
chunk_id: u32,
data: String,
},
Req {
chunk_ids: Vec<u32>,
},
Dte,
Dtd,
Dtr,
Dtt {
data: String,
},
}Variants§
Trait Implementations§
impl Eq for Transfer
impl StructuralPartialEq for Transfer
Auto Trait Implementations§
impl Freeze for Transfer
impl RefUnwindSafe for Transfer
impl Send for Transfer
impl Sync for Transfer
impl Unpin for Transfer
impl UnwindSafe for Transfer
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