pub struct RuntimeRecord {
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,
}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: i64Trait Implementations§
Source§impl Clone for RuntimeRecord
impl Clone for RuntimeRecord
Source§fn clone(&self) -> RuntimeRecord
fn clone(&self) -> RuntimeRecord
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 RuntimeRecord
impl Debug for RuntimeRecord
Source§impl<'de> Deserialize<'de> for RuntimeRecord
impl<'de> Deserialize<'de> for RuntimeRecord
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 RuntimeRecord
impl RefUnwindSafe for RuntimeRecord
impl Send for RuntimeRecord
impl Sync for RuntimeRecord
impl Unpin for RuntimeRecord
impl UnsafeUnpin for RuntimeRecord
impl UnwindSafe for RuntimeRecord
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