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