pub struct OrderEmulatorConfigBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> OrderEmulatorConfigBuilder<S>
impl<S: State> OrderEmulatorConfigBuilder<S>
Sourcepub fn build(self) -> OrderEmulatorConfigwhere
S: IsComplete,
pub fn build(self) -> OrderEmulatorConfigwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn debug(self, value: bool) -> OrderEmulatorConfigBuilder<SetDebug<S>>where
S::Debug: IsUnset,
pub fn debug(self, value: bool) -> OrderEmulatorConfigBuilder<SetDebug<S>>where
S::Debug: IsUnset,
Sourcepub fn maybe_debug(
self,
value: Option<bool>,
) -> OrderEmulatorConfigBuilder<SetDebug<S>>where
S::Debug: IsUnset,
pub fn maybe_debug(
self,
value: Option<bool>,
) -> OrderEmulatorConfigBuilder<SetDebug<S>>where
S::Debug: IsUnset,
Auto Trait Implementations§
impl<S> Freeze for OrderEmulatorConfigBuilder<S>
impl<S> RefUnwindSafe for OrderEmulatorConfigBuilder<S>
impl<S> Send for OrderEmulatorConfigBuilder<S>
impl<S> Sync for OrderEmulatorConfigBuilder<S>
impl<S> Unpin for OrderEmulatorConfigBuilder<S>
impl<S> UnsafeUnpin for OrderEmulatorConfigBuilder<S>
impl<S> UnwindSafe for OrderEmulatorConfigBuilder<S>
Blanket Implementations§
impl<T> Allocation for T
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