pub struct RemoteControlConfig {
pub existing_mc_session: Option<RemoteControlConfigExistingMcSession>,
pub explicit: bool,
pub remote: bool,
pub silent: bool,
pub steerable: bool,
pub task_id: Option<String>,
}Expand description
Configuration for the runtime-managed remote-control singleton.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§existing_mc_session: Option<RemoteControlConfigExistingMcSession>Reattach to an existing MC session without creating a new one.
explicit: boolWhether the user explicitly requested remote (vs. implicit session-sync). Controls warning surfacing for missing-repo cases.
remote: boolWhether remote export should be enabled.
silent: boolWhen true, suppresses timeline messages on successful setup.
steerable: boolWhether the MC session may steer the local session (write mode).
task_id: Option<String>Existing Mission Control task ID to attach the exported session to.
Trait Implementations§
Source§impl Clone for RemoteControlConfig
impl Clone for RemoteControlConfig
Source§fn clone(&self) -> RemoteControlConfig
fn clone(&self) -> RemoteControlConfig
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 RemoteControlConfig
impl Debug for RemoteControlConfig
Source§impl Default for RemoteControlConfig
impl Default for RemoteControlConfig
Source§fn default() -> RemoteControlConfig
fn default() -> RemoteControlConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteControlConfig
impl<'de> Deserialize<'de> for RemoteControlConfig
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 RemoteControlConfig
impl RefUnwindSafe for RemoteControlConfig
impl Send for RemoteControlConfig
impl Sync for RemoteControlConfig
impl Unpin for RemoteControlConfig
impl UnsafeUnpin for RemoteControlConfig
impl UnwindSafe for RemoteControlConfig
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