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, D>(
    deserializer: D,
) -> Result<Option<SerdeDFA<'data>>, <D as Deserializer<'de>>::Error>where
    'de: 'data,
    D: Deserializer<'de>,
 
pub fn maybe_deserialize<'de, D>(
    deserializer: D,
) -> Result<Option<SerdeDFA<'data>>, <D as Deserializer<'de>>::Error>where
    'de: 'data,
    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.
Sourceยงimpl<'data> SerdeDFA<'data>
 
impl<'data> SerdeDFA<'data>
Sourcepub const unsafe fn from_dfa_bytes_unchecked(
    dfa_bytes: &'data [u8],
) -> SerdeDFA<'data>
 
pub const unsafe fn from_dfa_bytes_unchecked( dfa_bytes: &'data [u8], ) -> SerdeDFA<'data>
Creates a SerdeDFA from raw bytes. Used internally by databake.
ยงSafety
dfa_bytes has to be a valid DFA (regex_automata::dfa::sparse::DFA::from_bytes(dfa_bytes).is_ok())
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>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
Sourceยงimpl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Sourceยงimpl<T> IntoEither for T
 
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more