pub struct ReplayOptions {
pub order: ReplayOrder,
pub seed: Option<u64>,
pub rate: Option<u64>,
pub timestamps: bool,
pub speed: f64,
pub stages: Vec<ReplayStage>,
}Fields§
§order: ReplayOrder§seed: Option<u64>§rate: Option<u64>§timestamps: bool§speed: f64§stages: Vec<ReplayStage>Trait Implementations§
Source§impl Clone for ReplayOptions
impl Clone for ReplayOptions
Source§fn clone(&self) -> ReplayOptions
fn clone(&self) -> ReplayOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReplayOptions
impl Debug for ReplayOptions
Source§impl Default for ReplayOptions
impl Default for ReplayOptions
Source§impl PartialEq for ReplayOptions
impl PartialEq for ReplayOptions
impl StructuralPartialEq for ReplayOptions
Auto Trait Implementations§
impl Freeze for ReplayOptions
impl RefUnwindSafe for ReplayOptions
impl Send for ReplayOptions
impl Sync for ReplayOptions
impl Unpin for ReplayOptions
impl UnsafeUnpin for ReplayOptions
impl UnwindSafe for ReplayOptions
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