pub struct SerDictFixed<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> {
pub data: Vec<Vec<SerWord, SEQ_SZ>, SEQS_CT>,
pub data_map: Option<Vec<&'a str, SEQS_CT>>,
pub bis: Vec<&'a str, BIS_CT>,
}Fields§
§data: Vec<Vec<SerWord, SEQ_SZ>, SEQS_CT>§data_map: Option<Vec<&'a str, SEQS_CT>>§bis: Vec<&'a str, BIS_CT>Trait Implementations§
Source§impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Debug for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Debug for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
Source§impl<'de: 'a, 'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Deserialize<'de> for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
impl<'de: 'a, 'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Deserialize<'de> for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Freeze for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> RefUnwindSafe for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Send for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Sync for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> Unpin for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
impl<'a, const SEQS_CT: usize, const SEQ_SZ: usize, const BIS_CT: usize> UnwindSafe for SerDictFixed<'a, SEQS_CT, SEQ_SZ, BIS_CT>
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