pub struct FieldSpec<'a> {
pub field: &'static Field,
pub modifier: &'a str,
pub domain_hash: u64,
pub range: Option<(i64, i64)>,
pub transform: Transform,
pub omit_pct: Option<u8>,
}Expand description
Per-field specification for batch generation.
Fields§
§field: &'static Field§modifier: &'a str§domain_hash: u64§range: Option<(i64, i64)>§transform: Transform§omit_pct: Option<u8>Auto Trait Implementations§
impl<'a> Freeze for FieldSpec<'a>
impl<'a> RefUnwindSafe for FieldSpec<'a>
impl<'a> Send for FieldSpec<'a>
impl<'a> Sync for FieldSpec<'a>
impl<'a> Unpin for FieldSpec<'a>
impl<'a> UnsafeUnpin for FieldSpec<'a>
impl<'a> UnwindSafe for FieldSpec<'a>
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