pub enum ViewVolumeRef {
ViewVolume(ViewVolumeId),
Complex(ComplexUnitId),
}Variants§
ViewVolume(ViewVolumeId)
Complex(ComplexUnitId)
Implementations§
Source§impl ViewVolumeRef
impl ViewVolumeRef
pub fn resolve<'m>(&self, model: &'m StepModel) -> ViewVolumeRefView<'m>
pub fn entity_key(&self) -> EntityKey
Trait Implementations§
Source§impl Clone for ViewVolumeRef
impl Clone for ViewVolumeRef
Source§fn clone(&self) -> ViewVolumeRef
fn clone(&self) -> ViewVolumeRef
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 ViewVolumeRef
impl Debug for ViewVolumeRef
Source§impl PartialEq for ViewVolumeRef
impl PartialEq for ViewVolumeRef
Source§fn eq(&self, other: &ViewVolumeRef) -> bool
fn eq(&self, other: &ViewVolumeRef) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ViewVolumeRef
Auto Trait Implementations§
impl Freeze for ViewVolumeRef
impl RefUnwindSafe for ViewVolumeRef
impl Send for ViewVolumeRef
impl Sync for ViewVolumeRef
impl Unpin for ViewVolumeRef
impl UnsafeUnpin for ViewVolumeRef
impl UnwindSafe for ViewVolumeRef
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