pub struct OrganismRecord {
pub organism_id: String,
pub recipe_id: String,
pub status: String,
pub current_step: i32,
pub total_steps: i32,
pub created_at_ms: i64,
pub completed_at_ms: Option<i64>,
}Expand description
Organism record for running recipes
Fields§
§organism_id: String§recipe_id: String§status: String§current_step: i32§total_steps: i32§created_at_ms: i64§completed_at_ms: Option<i64>Trait Implementations§
Source§impl Clone for OrganismRecord
impl Clone for OrganismRecord
Source§fn clone(&self) -> OrganismRecord
fn clone(&self) -> OrganismRecord
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 moreSource§impl Debug for OrganismRecord
impl Debug for OrganismRecord
Source§impl<'de> Deserialize<'de> for OrganismRecord
impl<'de> Deserialize<'de> for OrganismRecord
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 OrganismRecord
impl RefUnwindSafe for OrganismRecord
impl Send for OrganismRecord
impl Sync for OrganismRecord
impl Unpin for OrganismRecord
impl UnsafeUnpin for OrganismRecord
impl UnwindSafe for OrganismRecord
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