pub enum GenScopeEnum {
Ip(GenScope<Ipv4Addr>),
Digit(GenScope<i64>),
Float(GenScope<f64>),
Chars(Vec<String>),
}Variants§
Trait Implementations§
Source§impl Clone for GenScopeEnum
impl Clone for GenScopeEnum
Source§fn clone(&self) -> GenScopeEnum
fn clone(&self) -> GenScopeEnum
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 GenScopeEnum
impl Debug for GenScopeEnum
Source§impl<'de> Deserialize<'de> for GenScopeEnum
impl<'de> Deserialize<'de> for GenScopeEnum
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for GenScopeEnum
impl Display for GenScopeEnum
Source§impl PartialEq for GenScopeEnum
impl PartialEq for GenScopeEnum
Source§impl Serialize for GenScopeEnum
impl Serialize for GenScopeEnum
impl StructuralPartialEq for GenScopeEnum
Auto Trait Implementations§
impl Freeze for GenScopeEnum
impl RefUnwindSafe for GenScopeEnum
impl Send for GenScopeEnum
impl Sync for GenScopeEnum
impl Unpin for GenScopeEnum
impl UnsafeUnpin for GenScopeEnum
impl UnwindSafe for GenScopeEnum
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