pub struct AttemptTerminalDTO {Show 14 fields
pub session_id: String,
pub cli_session_id: Option<String>,
pub web_port: u16,
pub status: String,
pub lark_app_id: Option<String>,
pub bot_name: Option<String>,
pub cli_id: Option<String>,
pub working_dir: Option<String>,
pub log_path: Option<String>,
pub started_at: u64,
pub updated_at: u64,
pub closed_at: Option<u64>,
pub error: Option<String>,
pub has_pty_log: Option<bool>,
}Fields§
§session_id: String§cli_session_id: Option<String>§web_port: u16§status: String§lark_app_id: Option<String>§bot_name: Option<String>§cli_id: Option<String>§working_dir: Option<String>§log_path: Option<String>§started_at: u64§updated_at: u64§closed_at: Option<u64>§error: Option<String>§has_pty_log: Option<bool>Trait Implementations§
Source§impl Clone for AttemptTerminalDTO
impl Clone for AttemptTerminalDTO
Source§fn clone(&self) -> AttemptTerminalDTO
fn clone(&self) -> AttemptTerminalDTO
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 AttemptTerminalDTO
impl Debug for AttemptTerminalDTO
Source§impl<'de> Deserialize<'de> for AttemptTerminalDTO
impl<'de> Deserialize<'de> for AttemptTerminalDTO
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
impl Eq for AttemptTerminalDTO
Source§impl PartialEq for AttemptTerminalDTO
impl PartialEq for AttemptTerminalDTO
Source§fn eq(&self, other: &AttemptTerminalDTO) -> bool
fn eq(&self, other: &AttemptTerminalDTO) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AttemptTerminalDTO
impl Serialize for AttemptTerminalDTO
impl StructuralPartialEq for AttemptTerminalDTO
Auto Trait Implementations§
impl Freeze for AttemptTerminalDTO
impl RefUnwindSafe for AttemptTerminalDTO
impl Send for AttemptTerminalDTO
impl Sync for AttemptTerminalDTO
impl Unpin for AttemptTerminalDTO
impl UnsafeUnpin for AttemptTerminalDTO
impl UnwindSafe for AttemptTerminalDTO
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