pub struct CodexRemoteControlStatus {
pub config_path: PathBuf,
pub remote_connections_enabled: bool,
pub remote_control_config_present: bool,
pub db_path: PathBuf,
pub db_exists: bool,
pub db_table_exists: bool,
pub db_enabled: Option<bool>,
pub db_updated_at: Option<i64>,
}Fields§
§config_path: PathBuf§remote_connections_enabled: bool§remote_control_config_present: bool§db_path: PathBuf§db_exists: bool§db_table_exists: bool§db_enabled: Option<bool>§db_updated_at: Option<i64>Trait Implementations§
Source§impl Clone for CodexRemoteControlStatus
impl Clone for CodexRemoteControlStatus
Source§fn clone(&self) -> CodexRemoteControlStatus
fn clone(&self) -> CodexRemoteControlStatus
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 moreAuto Trait Implementations§
impl Freeze for CodexRemoteControlStatus
impl RefUnwindSafe for CodexRemoteControlStatus
impl Send for CodexRemoteControlStatus
impl Sync for CodexRemoteControlStatus
impl Unpin for CodexRemoteControlStatus
impl UnsafeUnpin for CodexRemoteControlStatus
impl UnwindSafe for CodexRemoteControlStatus
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