pub enum ControlResponse {
Show 13 variants
Ack {
message: String,
},
WorkspaceCreated {
workspace_id: WorkspaceId,
},
PaneSplit {
pane_id: PaneId,
},
SurfaceMovedToSplit {
pane_id: PaneId,
},
SurfaceMovedToWorkspace {
pane_id: PaneId,
},
SurfaceCreated {
surface_id: SurfaceId,
},
WorkspaceWindowCreated {
pane_id: PaneId,
},
WorkspaceWindowTabCreated {
pane_id: PaneId,
workspace_window_tab_id: WorkspaceWindowTabId,
},
Status {
session: PersistedSession,
},
WorkspaceState {
workspace_id: WorkspaceId,
session: PersistedSession,
},
Browser {
result: Value,
},
TerminalDebug {
result: TerminalDebugResult,
},
Identify {
result: IdentifyResult,
},
}Variants§
Ack
WorkspaceCreated
Fields
§
workspace_id: WorkspaceIdPaneSplit
SurfaceMovedToSplit
SurfaceMovedToWorkspace
SurfaceCreated
WorkspaceWindowCreated
WorkspaceWindowTabCreated
Status
Fields
§
session: PersistedSessionWorkspaceState
Browser
TerminalDebug
Fields
§
result: TerminalDebugResultIdentify
Fields
§
result: IdentifyResultTrait Implementations§
Source§impl Clone for ControlResponse
impl Clone for ControlResponse
Source§fn clone(&self) -> ControlResponse
fn clone(&self) -> ControlResponse
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 moreSource§impl Debug for ControlResponse
impl Debug for ControlResponse
Source§impl<'de> Deserialize<'de> for ControlResponse
impl<'de> Deserialize<'de> for ControlResponse
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
Source§impl From<AppModel> for ControlResponse
impl From<AppModel> for ControlResponse
Source§impl PartialEq for ControlResponse
impl PartialEq for ControlResponse
Source§impl Serialize for ControlResponse
impl Serialize for ControlResponse
impl Eq for ControlResponse
impl StructuralPartialEq for ControlResponse
Auto Trait Implementations§
impl Freeze for ControlResponse
impl RefUnwindSafe for ControlResponse
impl Send for ControlResponse
impl Sync for ControlResponse
impl Unpin for ControlResponse
impl UnsafeUnpin for ControlResponse
impl UnwindSafe for ControlResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.