pub struct ReplayOutputs {
pub wasm: Option<String>,
pub mp4: Option<String>,
pub tui_session: Option<String>,
}Expand description
Available replay outputs
Fields§
§wasm: Option<String>WASM bundle path
mp4: Option<String>MP4 video path
tui_session: Option<String>TUI session path
Trait Implementations§
Source§impl Clone for ReplayOutputs
impl Clone for ReplayOutputs
Source§fn clone(&self) -> ReplayOutputs
fn clone(&self) -> ReplayOutputs
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 ReplayOutputs
impl Debug for ReplayOutputs
Source§impl Default for ReplayOutputs
impl Default for ReplayOutputs
Source§fn default() -> ReplayOutputs
fn default() -> ReplayOutputs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplayOutputs
impl<'de> Deserialize<'de> for ReplayOutputs
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReplayOutputs
impl RefUnwindSafe for ReplayOutputs
impl Send for ReplayOutputs
impl Sync for ReplayOutputs
impl Unpin for ReplayOutputs
impl UnsafeUnpin for ReplayOutputs
impl UnwindSafe for ReplayOutputs
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