pub struct PlaceInfo {
pub name: String,
pub graph_id: String,
pub token_type: String,
pub is_start: bool,
pub is_end: bool,
pub is_environment: bool,
}Expand description
Information about a place in the net structure.
Fields§
§name: String§graph_id: String§token_type: String§is_start: bool§is_end: bool§is_environment: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for PlaceInfo
impl<'de> Deserialize<'de> for PlaceInfo
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 PlaceInfo
impl RefUnwindSafe for PlaceInfo
impl Send for PlaceInfo
impl Sync for PlaceInfo
impl Unpin for PlaceInfo
impl UnsafeUnpin for PlaceInfo
impl UnwindSafe for PlaceInfo
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