pub struct Dictionary {
pub handle: Handle,
pub owner: Handle,
pub entries: Vec<(String, Handle)>,
pub duplicate_cloning: i16,
pub hard_owner: bool,
pub reactors: Vec<Handle>,
pub xdictionary_handle: Option<Handle>,
}Expand description
Dictionary object - stores key-value pairs of object handles
Fields§
§handle: HandleUnique handle
owner: HandleOwner handle (soft pointer)
entries: Vec<(String, Handle)>Dictionary entries (key -> handle)
duplicate_cloning: i16Duplicate record cloning flag
hard_owner: boolHard owner flag
reactors: Vec<Handle>Reactor handles ({ACAD_REACTORS})
xdictionary_handle: Option<Handle>Extended dictionary handle ({ACAD_XDICTIONARY})
Implementations§
Trait Implementations§
Source§impl Clone for Dictionary
impl Clone for Dictionary
Source§fn clone(&self) -> Dictionary
fn clone(&self) -> Dictionary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Dictionary
impl Debug for Dictionary
Source§impl Default for Dictionary
impl Default for Dictionary
Source§impl PartialEq for Dictionary
impl PartialEq for Dictionary
impl StructuralPartialEq for Dictionary
Auto Trait Implementations§
impl Freeze for Dictionary
impl RefUnwindSafe for Dictionary
impl Send for Dictionary
impl Sync for Dictionary
impl Unpin for Dictionary
impl UnsafeUnpin for Dictionary
impl UnwindSafe for Dictionary
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