pub struct Step {Show 15 fields
pub step_id: String,
pub run_id: String,
pub session_id: String,
pub status: String,
pub owner: Option<String>,
pub lease_token: Option<String>,
pub lease_until: Option<f64>,
pub attempt: u64,
pub state_version: u64,
pub checkpoint_id: Option<String>,
pub last_error_type: Option<String>,
pub last_error: Option<String>,
pub cancelled_at: Option<f64>,
pub created_at: f64,
pub updated_at: f64,
}Fields§
§step_id: String§run_id: String§session_id: String§status: String§owner: Option<String>§lease_token: Option<String>§lease_until: Option<f64>§attempt: u64§state_version: u64§checkpoint_id: Option<String>§last_error_type: Option<String>§last_error: Option<String>§cancelled_at: Option<f64>§created_at: f64§updated_at: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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