pub struct Dict { /* private fields */ }Expand description
The dictionary struct (opaque in the C ABI).
In the C ABI, xmlDict is an opaque type (defined as a struct forward
declaration in the public header). Users only interact with it through
pointer. Our _xmlDict is defined in structs.rs as opaque. Here we
define the actual internal representation.
Auto Trait Implementations§
impl !Send for Dict
impl !Sync for Dict
impl Freeze for Dict
impl RefUnwindSafe for Dict
impl Unpin for Dict
impl UnsafeUnpin for Dict
impl UnwindSafe for Dict
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