pub enum BandwidthType {
AS,
CT,
Other(String),
}Expand description
Bandwidth type.
Variants§
Trait Implementations§
Source§impl Clone for BandwidthType
impl Clone for BandwidthType
Source§fn clone(&self) -> BandwidthType
fn clone(&self) -> BandwidthType
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 Display for BandwidthType
impl Display for BandwidthType
Auto Trait Implementations§
impl Freeze for BandwidthType
impl RefUnwindSafe for BandwidthType
impl Send for BandwidthType
impl Sync for BandwidthType
impl Unpin for BandwidthType
impl UnwindSafe for BandwidthType
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