pub struct BuildState {
pub started_at: String,
pub last_updated: String,
pub current_step: String,
pub completed_steps: Vec<String>,
pub genomes_downloaded: usize,
pub plsdb_extracted: usize,
pub alignments_done: bool,
pub flanking_extracted: bool,
}Fields§
§started_at: String§last_updated: String§current_step: String§completed_steps: Vec<String>§genomes_downloaded: usize§plsdb_extracted: usize§alignments_done: bool§flanking_extracted: boolImplementations§
Trait Implementations§
Source§impl Clone for BuildState
impl Clone for BuildState
Source§fn clone(&self) -> BuildState
fn clone(&self) -> BuildState
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 BuildState
impl Debug for BuildState
Source§impl Default for BuildState
impl Default for BuildState
Source§impl<'de> Deserialize<'de> for BuildState
impl<'de> Deserialize<'de> for BuildState
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 BuildState
impl RefUnwindSafe for BuildState
impl Send for BuildState
impl Sync for BuildState
impl Unpin for BuildState
impl UnwindSafe for BuildState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more