pub struct SimpleTransition { /* private fields */ }Expand description
A simple implementation of a net Transition with no extensions.
Trait Implementations§
Source§impl Debug for SimpleTransition
impl Debug for SimpleTransition
Source§impl HasIdentity for SimpleTransition
impl HasIdentity for SimpleTransition
Source§impl HasLabel for SimpleTransition
impl HasLabel for SimpleTransition
Source§fn label(&self) -> Option<&String>
fn label(&self) -> Option<&String>
Note: if a label is expected and this method returns
None and the object implements
HasIdentity use the id value as the label.Source§fn unset_label(&mut self)
fn unset_label(&mut self)
Set the object’s label to
None.impl Transition for SimpleTransition
Auto Trait Implementations§
impl Freeze for SimpleTransition
impl RefUnwindSafe for SimpleTransition
impl Send for SimpleTransition
impl Sync for SimpleTransition
impl Unpin for SimpleTransition
impl UnwindSafe for SimpleTransition
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