pub enum PlanarBoxRef {
PlanarBox(PlanarBoxId),
Complex(ComplexUnitId),
}Variants§
PlanarBox(PlanarBoxId)
Complex(ComplexUnitId)
Implementations§
Source§impl PlanarBoxRef
impl PlanarBoxRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> PlanarBoxRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for PlanarBoxRef
impl Clone for PlanarBoxRef
Source§fn clone(&self) -> PlanarBoxRef
fn clone(&self) -> PlanarBoxRef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlanarBoxRef
impl Debug for PlanarBoxRef
Source§impl PartialEq for PlanarBoxRef
impl PartialEq for PlanarBoxRef
Source§fn eq(&self, other: &PlanarBoxRef) -> bool
fn eq(&self, other: &PlanarBoxRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlanarBoxRef
Auto Trait Implementations§
impl Freeze for PlanarBoxRef
impl RefUnwindSafe for PlanarBoxRef
impl Send for PlanarBoxRef
impl Sync for PlanarBoxRef
impl Unpin for PlanarBoxRef
impl UnsafeUnpin for PlanarBoxRef
impl UnwindSafe for PlanarBoxRef
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