pub struct DepEdge {
pub from: String,
pub to: String,
pub distance: i64,
}Expand description
Dependency edge between two LCNF variables (or array accesses).
Fields§
§from: StringSource variable or access.
to: StringDestination variable or access.
distance: i64Distance vector (simplified to a scalar for 1-D loops).
Trait Implementations§
impl Eq for DepEdge
impl StructuralPartialEq for DepEdge
Auto Trait Implementations§
impl Freeze for DepEdge
impl RefUnwindSafe for DepEdge
impl Send for DepEdge
impl Sync for DepEdge
impl Unpin for DepEdge
impl UnsafeUnpin for DepEdge
impl UnwindSafe for DepEdge
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