pub struct SurfaceRecord {
pub id: SurfaceId,
pub kind: PaneKind,
pub metadata: PaneMetadata,
pub agent_process: Option<SurfaceAgentProcess>,
pub agent_session: Option<SurfaceAgentSession>,
pub attention: AttentionState,
pub session_id: SessionId,
pub command: Option<Vec<String>>,
pub interrupted_agent_resume: Option<InterruptedAgentResume>,
}Fields§
§id: SurfaceId§kind: PaneKind§metadata: PaneMetadata§agent_process: Option<SurfaceAgentProcess>§agent_session: Option<SurfaceAgentSession>§attention: AttentionState§session_id: SessionId§command: Option<Vec<String>>§interrupted_agent_resume: Option<InterruptedAgentResume>Implementations§
Trait Implementations§
Source§impl Clone for SurfaceRecord
impl Clone for SurfaceRecord
Source§fn clone(&self) -> SurfaceRecord
fn clone(&self) -> SurfaceRecord
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 SurfaceRecord
impl Debug for SurfaceRecord
Source§impl<'de> Deserialize<'de> for SurfaceRecord
impl<'de> Deserialize<'de> for SurfaceRecord
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 PartialEq for SurfaceRecord
impl PartialEq for SurfaceRecord
Source§impl Serialize for SurfaceRecord
impl Serialize for SurfaceRecord
impl Eq for SurfaceRecord
impl StructuralPartialEq for SurfaceRecord
Auto Trait Implementations§
impl Freeze for SurfaceRecord
impl RefUnwindSafe for SurfaceRecord
impl Send for SurfaceRecord
impl Sync for SurfaceRecord
impl Unpin for SurfaceRecord
impl UnsafeUnpin for SurfaceRecord
impl UnwindSafe for SurfaceRecord
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.