pub enum SegmentationSupport {
Both,
Transmit,
Receive,
None,
}Expand description
Segmentation support level.
Variants§
Both
Both segmented requests and responses.
Transmit
Segmented transmit only.
Receive
Segmented receive only.
None
No segmentation support.
Trait Implementations§
Source§impl Clone for SegmentationSupport
impl Clone for SegmentationSupport
Source§fn clone(&self) -> SegmentationSupport
fn clone(&self) -> SegmentationSupport
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 moreSource§impl Debug for SegmentationSupport
impl Debug for SegmentationSupport
Source§impl PartialEq for SegmentationSupport
impl PartialEq for SegmentationSupport
impl Copy for SegmentationSupport
impl Eq for SegmentationSupport
impl StructuralPartialEq for SegmentationSupport
Auto Trait Implementations§
impl Freeze for SegmentationSupport
impl RefUnwindSafe for SegmentationSupport
impl Send for SegmentationSupport
impl Sync for SegmentationSupport
impl Unpin for SegmentationSupport
impl UnsafeUnpin for SegmentationSupport
impl UnwindSafe for SegmentationSupport
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