pub struct InMemoryEnvironmentBindingStore { /* private fields */ }Expand description
Process-local binding store used by the default embedded Agent lifecycle.
Trait Implementations§
Source§impl Default for InMemoryEnvironmentBindingStore
impl Default for InMemoryEnvironmentBindingStore
Source§fn default() -> InMemoryEnvironmentBindingStore
fn default() -> InMemoryEnvironmentBindingStore
Returns the “default value” for a type. Read more
Source§impl EnvironmentBindingStore for InMemoryEnvironmentBindingStore
impl EnvironmentBindingStore for InMemoryEnvironmentBindingStore
fn load<'life0, 'async_trait>(
&'life0 self,
session_id: SessionId,
) -> Pin<Box<dyn Future<Output = Result<Option<WorkspaceBinding>, EnvironmentBindingError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn bind<'life0, 'life1, 'async_trait>(
&'life0 self,
session_id: SessionId,
binding: &'life1 WorkspaceBinding,
) -> Pin<Box<dyn Future<Output = Result<(), EnvironmentBindingError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl !Freeze for InMemoryEnvironmentBindingStore
impl RefUnwindSafe for InMemoryEnvironmentBindingStore
impl Send for InMemoryEnvironmentBindingStore
impl Sync for InMemoryEnvironmentBindingStore
impl Unpin for InMemoryEnvironmentBindingStore
impl UnsafeUnpin for InMemoryEnvironmentBindingStore
impl UnwindSafe for InMemoryEnvironmentBindingStore
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