pub struct LaunchEnv {
pub participant_id: String,
pub execution_id: Option<String>,
pub producer_id: Option<String>,
pub execution_origin: Option<String>,
pub robot_id: String,
pub namespace: Option<String>,
pub bundle_root: Option<PathBuf>,
pub component_instance: Option<String>,
pub connect: Option<String>,
pub config: Option<String>,
pub clock: ClockMode,
}Expand description
Raw values supplied by a runtime-specific CLI parser.
Fields§
§participant_id: String§execution_id: Option<String>§producer_id: Option<String>§execution_origin: Option<String>§robot_id: String§namespace: Option<String>§bundle_root: Option<PathBuf>§component_instance: Option<String>§connect: Option<String>§config: Option<String>§clock: ClockModeTrait Implementations§
impl Eq for LaunchEnv
impl StructuralPartialEq for LaunchEnv
Auto Trait Implementations§
impl Freeze for LaunchEnv
impl RefUnwindSafe for LaunchEnv
impl Send for LaunchEnv
impl Sync for LaunchEnv
impl Unpin for LaunchEnv
impl UnsafeUnpin for LaunchEnv
impl UnwindSafe for LaunchEnv
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