pub struct AssemblerConfig {
pub skip_unknown_segments: bool,
}Expand description
Configuration for the assembler.
Fields§
§skip_unknown_segments: boolWhen true, the assembler skips segments inside a group instance that
don’t match any remaining MIG slot, nested-group entry, or the group’s
entry tag (next repetition). Skipped segments are preserved on
AssembledGroupInstance::skipped_segments for roundtrip re-emission.
Default: false (strict AHB — unknown segments stall the cursor).
Trait Implementations§
Source§impl Clone for AssemblerConfig
impl Clone for AssemblerConfig
Source§fn clone(&self) -> AssemblerConfig
fn clone(&self) -> AssemblerConfig
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 AssemblerConfig
impl Debug for AssemblerConfig
Source§impl Default for AssemblerConfig
impl Default for AssemblerConfig
Source§fn default() -> AssemblerConfig
fn default() -> AssemblerConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AssemblerConfig
impl RefUnwindSafe for AssemblerConfig
impl Send for AssemblerConfig
impl Sync for AssemblerConfig
impl Unpin for AssemblerConfig
impl UnsafeUnpin for AssemblerConfig
impl UnwindSafe for AssemblerConfig
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