pub struct RunnerOptions {
pub other: Vec<String>,
pub define: BTreeMap<String, String>,
}
Expand description
Fields§
§other: Vec<String>
Extended nonstandard runner options.
define: BTreeMap<String, String>
Define key/value pairs.
Implementations§
Source§impl RunnerOptions
impl RunnerOptions
Sourcepub fn builder() -> RunnerOptionsBuilder
pub fn builder() -> RunnerOptionsBuilder
Create an instance of RunnerOptions
using the builder syntax
Trait Implementations§
Source§impl Clone for RunnerOptions
impl Clone for RunnerOptions
Source§fn clone(&self) -> RunnerOptions
fn clone(&self) -> RunnerOptions
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 RunnerOptions
impl Debug for RunnerOptions
Source§impl Default for RunnerOptions
impl Default for RunnerOptions
Source§fn default() -> RunnerOptions
fn default() -> RunnerOptions
Returns the “default value” for a type. Read more
Source§impl Hash for RunnerOptions
impl Hash for RunnerOptions
Source§impl Ord for RunnerOptions
impl Ord for RunnerOptions
Source§fn cmp(&self, other: &RunnerOptions) -> Ordering
fn cmp(&self, other: &RunnerOptions) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RunnerOptions
impl PartialEq for RunnerOptions
Source§impl PartialOrd for RunnerOptions
impl PartialOrd for RunnerOptions
impl Eq for RunnerOptions
impl StructuralPartialEq for RunnerOptions
Auto Trait Implementations§
impl Freeze for RunnerOptions
impl RefUnwindSafe for RunnerOptions
impl Send for RunnerOptions
impl Sync for RunnerOptions
impl Unpin for RunnerOptions
impl UnwindSafe for RunnerOptions
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