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