pub enum DfaTransition {
Element {
next: StateId,
decl: Arc<ElementDecl>,
},
Wildcard {
next: StateId,
process_contents: ProcessContents,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DfaTransition
impl RefUnwindSafe for DfaTransition
impl Send for DfaTransition
impl Sync for DfaTransition
impl Unpin for DfaTransition
impl UnsafeUnpin for DfaTransition
impl UnwindSafe for DfaTransition
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