pub struct LoopDependency {
pub source: LoopId,
pub target: LoopId,
pub kind: DependencyKind,
pub distance: Option<Vec<i32>>,
}Expand description
A dependency between loops.
Fields§
§source: LoopIdSource loop.
target: LoopIdTarget loop.
kind: DependencyKindDependency type.
distance: Option<Vec<i32>>Distance vector (for affine dependencies).
Trait Implementations§
Source§impl Clone for LoopDependency
impl Clone for LoopDependency
Source§fn clone(&self) -> LoopDependency
fn clone(&self) -> LoopDependency
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 LoopDependency
impl Debug for LoopDependency
Source§impl<'de> Deserialize<'de> for LoopDependency
impl<'de> Deserialize<'de> for LoopDependency
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LoopDependency
impl RefUnwindSafe for LoopDependency
impl Send for LoopDependency
impl Sync for LoopDependency
impl Unpin for LoopDependency
impl UnsafeUnpin for LoopDependency
impl UnwindSafe for LoopDependency
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