pub struct RemoteControlStatusError {
pub attached_session_id: Option<String>,
pub error: String,
pub state: RemoteControlStatusErrorState,
}Expand description
The last setup attempt failed. The singleton is otherwise off.
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: Option<String>Session id the failing setup attempt targeted, when known.
error: StringHuman-readable error message from the last setup attempt.
state: RemoteControlStatusErrorStateRemote control state tag: setup failed.
Trait Implementations§
Source§impl Clone for RemoteControlStatusError
impl Clone for RemoteControlStatusError
Source§fn clone(&self) -> RemoteControlStatusError
fn clone(&self) -> RemoteControlStatusError
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 RemoteControlStatusError
impl Debug for RemoteControlStatusError
Source§impl Default for RemoteControlStatusError
impl Default for RemoteControlStatusError
Source§fn default() -> RemoteControlStatusError
fn default() -> RemoteControlStatusError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteControlStatusError
impl<'de> Deserialize<'de> for RemoteControlStatusError
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 RemoteControlStatusError
impl RefUnwindSafe for RemoteControlStatusError
impl Send for RemoteControlStatusError
impl Sync for RemoteControlStatusError
impl Unpin for RemoteControlStatusError
impl UnsafeUnpin for RemoteControlStatusError
impl UnwindSafe for RemoteControlStatusError
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