pub struct RemoteControlStatusActive {
pub attached_session_id: String,
pub frontend_url: Option<String>,
pub is_steerable: bool,
pub state: RemoteControlStatusActiveState,
/* private fields */
}Expand description
Remote control is connected to a local session.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§attached_session_id: StringSession id remote control is pointed at.
frontend_url: Option<String>MC frontend URL for this session, when known.
is_steerable: boolWhether the MC session may steer this session.
state: RemoteControlStatusActiveStateRemote control state tag: active.
Trait Implementations§
Source§impl Clone for RemoteControlStatusActive
impl Clone for RemoteControlStatusActive
Source§fn clone(&self) -> RemoteControlStatusActive
fn clone(&self) -> RemoteControlStatusActive
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 RemoteControlStatusActive
impl Debug for RemoteControlStatusActive
Source§impl Default for RemoteControlStatusActive
impl Default for RemoteControlStatusActive
Source§fn default() -> RemoteControlStatusActive
fn default() -> RemoteControlStatusActive
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteControlStatusActive
impl<'de> Deserialize<'de> for RemoteControlStatusActive
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 RemoteControlStatusActive
impl RefUnwindSafe for RemoteControlStatusActive
impl Send for RemoteControlStatusActive
impl Sync for RemoteControlStatusActive
impl Unpin for RemoteControlStatusActive
impl UnsafeUnpin for RemoteControlStatusActive
impl UnwindSafe for RemoteControlStatusActive
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