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 Default for RuntimeRecord
impl Default for RuntimeRecord
Source§fn default() -> RuntimeRecord
fn default() -> RuntimeRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuntimeRecordwhere
RuntimeRecord: Default,
impl<'de> Deserialize<'de> for RuntimeRecordwhere
RuntimeRecord: Default,
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuntimeRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuntimeRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RuntimeRecord
impl PartialEq for RuntimeRecord
Source§impl Serialize for RuntimeRecord
impl Serialize for RuntimeRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for RuntimeRecord
impl StructuralPartialEq for RuntimeRecord
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