pub struct StepFunctionsState {
pub account_id: String,
pub region: String,
pub state_machines: HashMap<String, StateMachine>,
pub executions: HashMap<String, Execution>,
}Fields§
§account_id: String§region: String§state_machines: HashMap<String, StateMachine>State machines keyed by ARN.
executions: HashMap<String, Execution>Executions keyed by execution ARN.
Implementations§
Auto Trait Implementations§
impl Freeze for StepFunctionsState
impl RefUnwindSafe for StepFunctionsState
impl Send for StepFunctionsState
impl Sync for StepFunctionsState
impl Unpin for StepFunctionsState
impl UnsafeUnpin for StepFunctionsState
impl UnwindSafe for StepFunctionsState
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