pub struct StateManagementInfo {
pub pattern_type: String,
pub state_variables: Vec<String>,
pub actions: Vec<String>,
}
Expand description
State management information
Fields§
§pattern_type: String
§state_variables: Vec<String>
§actions: Vec<String>
Trait Implementations§
Source§impl Clone for StateManagementInfo
impl Clone for StateManagementInfo
Source§fn clone(&self) -> StateManagementInfo
fn clone(&self) -> StateManagementInfo
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 moreAuto Trait Implementations§
impl Freeze for StateManagementInfo
impl RefUnwindSafe for StateManagementInfo
impl Send for StateManagementInfo
impl Sync for StateManagementInfo
impl Unpin for StateManagementInfo
impl UnwindSafe for StateManagementInfo
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