pub enum UdpBody {
CombinationalBody(Box<CombinationalBody>),
SequentialBody(Box<SequentialBody>),
}
Variants§
CombinationalBody(Box<CombinationalBody>)
SequentialBody(Box<SequentialBody>)
Trait Implementations§
Source§impl<'a> IntoIterator for &'a UdpBody
impl<'a> IntoIterator for &'a UdpBody
impl StructuralPartialEq for UdpBody
Auto Trait Implementations§
impl Freeze for UdpBody
impl RefUnwindSafe for UdpBody
impl Send for UdpBody
impl Sync for UdpBody
impl Unpin for UdpBody
impl UnwindSafe for UdpBody
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