pub struct SerdeDFA<'data> {
dfa_bytes: Cow<'data, [u8]>,
pattern: Option<Cow<'data, str>>,
}
Expand description
A serde-compatible version of regex_automata::dfa::sparse::DFA. This does not implement
[serde::Deserialize
] directly, as binary deserialization is not supported in big-endian
platforms. Self::maybe_deserialize
can be used to deserialize to Option<SerdeDFA>
.
๐ง This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Fieldsยง
ยงdfa_bytes: Cow<'data, [u8]>
ยงpattern: Option<Cow<'data, str>>
Implementationsยง
Trait Implementationsยง
sourceยงimpl PartialEq for SerdeDFA<'_>
impl PartialEq for SerdeDFA<'_>
Auto Trait Implementationsยง
impl<'data> Freeze for SerdeDFA<'data>
impl<'data> RefUnwindSafe for SerdeDFA<'data>
impl<'data> Send for SerdeDFA<'data>
impl<'data> Sync for SerdeDFA<'data>
impl<'data> Unpin for SerdeDFA<'data>
impl<'data> UnwindSafe for SerdeDFA<'data>
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