pub struct SessionStateEntry {
pub session_id: String,
pub step: String,
pub data: String,
pub updated_at: DateTime<Utc>,
}Expand description
A session-scoped state entry: shared data across all cases in a session.
Fields§
§session_id: String§step: String§data: StringJSON-serialized workflow data.
updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for SessionStateEntry
impl Clone for SessionStateEntry
Source§fn clone(&self) -> SessionStateEntry
fn clone(&self) -> SessionStateEntry
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 SessionStateEntry
impl RefUnwindSafe for SessionStateEntry
impl Send for SessionStateEntry
impl Sync for SessionStateEntry
impl Unpin for SessionStateEntry
impl UnsafeUnpin for SessionStateEntry
impl UnwindSafe for SessionStateEntry
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