pub struct DictEntry {
pub max_length: usize,
pub entries: FxHashMap<DictKey, PsObject>,
pub access: u8,
pub name: Vec<u8>,
}Expand description
A single dictionary with its metadata.
Fields§
§max_length: usize§entries: FxHashMap<DictKey, PsObject>§access: u8§name: Vec<u8>Auto Trait Implementations§
impl Freeze for DictEntry
impl RefUnwindSafe for DictEntry
impl Send for DictEntry
impl Sync for DictEntry
impl Unpin for DictEntry
impl UnsafeUnpin for DictEntry
impl UnwindSafe for DictEntry
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