pub struct Dictionary<D> { /* private fields */ }
Expand description
a list of Datapair
s
Implementations§
Source§impl<D> Dictionary<D>
impl<D> Dictionary<D>
Sourcepub fn change_data(&mut self, k: String, d: D)
pub fn change_data(&mut self, k: String, d: D)
Sourcepub fn change_key(&mut self, ok: String, nk: String)
pub fn change_key(&mut self, ok: String, nk: String)
Trait Implementations§
Source§impl<D: Clone> Clone for Dictionary<D>
impl<D: Clone> Clone for Dictionary<D>
Source§impl<D: PartialEq> PartialEq for Dictionary<D>
impl<D: PartialEq> PartialEq for Dictionary<D>
Auto Trait Implementations§
impl<D> Freeze for Dictionary<D>
impl<D> RefUnwindSafe for Dictionary<D>where
D: RefUnwindSafe,
impl<D> Send for Dictionary<D>where
D: Send,
impl<D> Sync for Dictionary<D>where
D: Sync,
impl<D> Unpin for Dictionary<D>where
D: Unpin,
impl<D> UnwindSafe for Dictionary<D>where
D: UnwindSafe,
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