#[non_exhaustive]pub struct AssembleOptions {
pub format: DfaPackFormat,
pub minimize: bool,
}Expand description
Options controlling the assembly pipeline.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.format: DfaPackFormatRequested pack format. Dense if you want fastest scan; EquivClass
if you want the smallest GPU buffer for small alphabets.
minimize: boolWhether to run super::dfa_minimize::dfa_minimize before packing.
Default true — skipping minimization is only useful when the
pipeline output is re-consumed by another minimizer.
Trait Implementations§
Source§impl Clone for AssembleOptions
impl Clone for AssembleOptions
Source§fn clone(&self) -> AssembleOptions
fn clone(&self) -> AssembleOptions
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 AssembleOptions
impl Debug for AssembleOptions
Source§impl Default for AssembleOptions
impl Default for AssembleOptions
Source§impl PartialEq for AssembleOptions
impl PartialEq for AssembleOptions
impl Copy for AssembleOptions
impl Eq for AssembleOptions
impl StructuralPartialEq for AssembleOptions
Auto Trait Implementations§
impl Freeze for AssembleOptions
impl RefUnwindSafe for AssembleOptions
impl Send for AssembleOptions
impl Sync for AssembleOptions
impl Unpin for AssembleOptions
impl UnsafeUnpin for AssembleOptions
impl UnwindSafe for AssembleOptions
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