pub struct SortEntsEntry {
pub entity_handle: Handle,
pub sort_handle: Handle,
}Expand description
An entry in the sort entities table.
Maps an entity handle to its sort handle for determining draw order.
Fields§
§entity_handle: HandleEntity handle (the entity being sorted). DXF code: 331
sort_handle: HandleSort handle (determines draw order). Lower values are drawn first (below). DXF code: 5
Implementations§
Trait Implementations§
Source§impl Clone for SortEntsEntry
impl Clone for SortEntsEntry
Source§fn clone(&self) -> SortEntsEntry
fn clone(&self) -> SortEntsEntry
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 SortEntsEntry
impl Debug for SortEntsEntry
Source§impl PartialEq for SortEntsEntry
impl PartialEq for SortEntsEntry
impl Eq for SortEntsEntry
impl StructuralPartialEq for SortEntsEntry
Auto Trait Implementations§
impl Freeze for SortEntsEntry
impl RefUnwindSafe for SortEntsEntry
impl Send for SortEntsEntry
impl Sync for SortEntsEntry
impl Unpin for SortEntsEntry
impl UnsafeUnpin for SortEntsEntry
impl UnwindSafe for SortEntsEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.