pub struct Arc {
pub source: String,
pub target: String,
pub weight: Vec<f64>,
pub inhibit_transition: bool,
}Expand description
A directed connection between a Place and a Transition.
Fields§
§source: String§target: String§weight: Vec<f64>§inhibit_transition: boolImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Arc
impl RefUnwindSafe for Arc
impl Send for Arc
impl Sync for Arc
impl Unpin for Arc
impl UnsafeUnpin for Arc
impl UnwindSafe for Arc
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