pub struct NoStrategyParameters { /* private fields */ }
Implementations§
Source§impl NoStrategyParameters
impl NoStrategyParameters
pub fn get_strategy_parameter_name(&self) -> Option<StrategyParameterName>
pub fn get_strategy_parameter_type(&self) -> Option<StrategyParameterType>
pub fn get_strategy_parameter_value(&self) -> Option<StrategyParameterValue>
pub fn set_strategy_parameter_name( &mut self, value: StrategyParameterName, ) -> Result<&Self, QuickFixError>
pub fn remove_strategy_parameter_name(&mut self) -> Result<&Self, QuickFixError>
pub fn set_strategy_parameter_type( &mut self, value: StrategyParameterType, ) -> Result<&Self, QuickFixError>
pub fn remove_strategy_parameter_type(&mut self) -> Result<&Self, QuickFixError>
pub fn set_strategy_parameter_value( &mut self, value: StrategyParameterValue, ) -> Result<&Self, QuickFixError>
pub fn remove_strategy_parameter_value( &mut self, ) -> Result<&Self, QuickFixError>
Trait Implementations§
Source§impl Clone for NoStrategyParameters
impl Clone for NoStrategyParameters
Source§fn clone(&self) -> NoStrategyParameters
fn clone(&self) -> NoStrategyParameters
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 moreAuto Trait Implementations§
impl Freeze for NoStrategyParameters
impl RefUnwindSafe for NoStrategyParameters
impl !Send for NoStrategyParameters
impl !Sync for NoStrategyParameters
impl Unpin for NoStrategyParameters
impl UnwindSafe for NoStrategyParameters
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