pub struct SerdeDFA<'data> { /* private fields */ }
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.
Implementationsยง
Sourceยงimpl<'data> SerdeDFA<'data>
impl<'data> SerdeDFA<'data>
Sourcepub fn maybe_deserialize<'de: 'data, D>(
deserializer: D,
) -> Result<Option<Self>, D::Error>where
D: Deserializer<'de>,
pub fn maybe_deserialize<'de: 'data, D>(
deserializer: D,
) -> Result<Option<Self>, D::Error>where
D: Deserializer<'de>,
Deserializes to Option<Self>
. Will return None
for non-human-readable serialization
formats on big-endian systems, as regex_automata
serialization is endian-sensitive.
Trait Implementationsยง
Sourceยงimpl<'a> Yokeable<'a> for SerdeDFA<'static>
impl<'a> Yokeable<'a> for SerdeDFA<'static>
Sourceยงtype Output = SerdeDFA<'a>
type Output = SerdeDFA<'a>
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
Sourceยงfn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
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