pub struct TransitionInfo {
pub name: String,
pub graph_id: String,
}Expand description
Information about a transition in the net structure.
Fields§
§name: String§graph_id: StringTrait Implementations§
Source§impl Clone for TransitionInfo
impl Clone for TransitionInfo
Source§fn clone(&self) -> TransitionInfo
fn clone(&self) -> TransitionInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 TransitionInfo
impl Debug for TransitionInfo
Source§impl<'de> Deserialize<'de> for TransitionInfo
impl<'de> Deserialize<'de> for TransitionInfo
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 TransitionInfo
impl RefUnwindSafe for TransitionInfo
impl Send for TransitionInfo
impl Sync for TransitionInfo
impl Unpin for TransitionInfo
impl UnsafeUnpin for TransitionInfo
impl UnwindSafe for TransitionInfo
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