pub struct RecordingConfig {
pub path: PathBuf,
pub request_id: String,
pub timestamp: String,
pub program_file: String,
pub module_root: String,
pub entry_fn: String,
pub input: JsonValue,
}Fields§
§path: PathBuf§request_id: String§timestamp: String§program_file: String§module_root: String§entry_fn: String§input: JsonValueTrait Implementations§
Source§impl Clone for RecordingConfig
impl Clone for RecordingConfig
Source§fn clone(&self) -> RecordingConfig
fn clone(&self) -> RecordingConfig
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 RecordingConfig
impl RefUnwindSafe for RecordingConfig
impl Send for RecordingConfig
impl Sync for RecordingConfig
impl Unpin for RecordingConfig
impl UnsafeUnpin for RecordingConfig
impl UnwindSafe for RecordingConfig
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