pub struct AppRuntime {
pub store: SqliteEventStore,
pub cwd: PathBuf,
pub workspace_id: String,
pub agent: String,
pub session_id: String,
pub oauth: Option<OAuthRuntime>,
}Fields§
§store: SqliteEventStore§cwd: PathBuf§workspace_id: String§agent: String§session_id: String§oauth: Option<OAuthRuntime>Trait Implementations§
Source§impl Clone for AppRuntime
impl Clone for AppRuntime
Source§fn clone(&self) -> AppRuntime
fn clone(&self) -> AppRuntime
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 AppRuntime
impl RefUnwindSafe for AppRuntime
impl Send for AppRuntime
impl Sync for AppRuntime
impl Unpin for AppRuntime
impl UnsafeUnpin for AppRuntime
impl UnwindSafe for AppRuntime
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