pub struct RunConfig {
pub model_type: Option<ModelTypes>,
pub seed: Option<i32>,
pub temperature: Option<f32>,
pub verbose: Option<i32>,
pub save_stats: Option<bool>,
pub batch_size: Option<i32>,
pub number_of_batches: Option<i32>,
pub file_ending: Option<String>,
pub zero_indexed: Option<i32>,
pub homo_oligomer: Option<i32>,
pub fasta_seq_separation: Option<String>,
}Fields§
§model_type: Option<ModelTypes>§seed: Option<i32>§temperature: Option<f32>§verbose: Option<i32>§save_stats: Option<bool>§batch_size: Option<i32>§number_of_batches: Option<i32>§file_ending: Option<String>§zero_indexed: Option<i32>§homo_oligomer: Option<i32>§fasta_seq_separation: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunConfig
impl RefUnwindSafe for RunConfig
impl Send for RunConfig
impl Sync for RunConfig
impl Unpin for RunConfig
impl UnwindSafe for RunConfig
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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