pub struct RuntimeSummary {
pub runtime_id: String,
pub display_name: String,
pub codex_home: Option<String>,
pub codex_binary: String,
pub is_primary: bool,
pub auto_start: bool,
pub created_at_ms: i64,
pub updated_at_ms: i64,
pub status: RuntimeStatusSnapshot,
}Fields§
§runtime_id: String§display_name: String§codex_home: Option<String>§codex_binary: String§is_primary: bool§auto_start: bool§created_at_ms: i64§updated_at_ms: i64§status: RuntimeStatusSnapshotImplementations§
Source§impl RuntimeSummary
impl RuntimeSummary
pub fn from_parts(record: &RuntimeRecord, status: RuntimeStatusSnapshot) -> Self
Trait Implementations§
Source§impl Clone for RuntimeSummary
impl Clone for RuntimeSummary
Source§fn clone(&self) -> RuntimeSummary
fn clone(&self) -> RuntimeSummary
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 RuntimeSummary
impl Debug for RuntimeSummary
Source§impl<'de> Deserialize<'de> for RuntimeSummary
impl<'de> Deserialize<'de> for RuntimeSummary
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 RuntimeSummary
impl RefUnwindSafe for RuntimeSummary
impl Send for RuntimeSummary
impl Sync for RuntimeSummary
impl Unpin for RuntimeSummary
impl UnsafeUnpin for RuntimeSummary
impl UnwindSafe for RuntimeSummary
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