pub struct InMemoryProjectionStore { /* private fields */ }Trait Implementations§
Source§impl Clone for InMemoryProjectionStore
impl Clone for InMemoryProjectionStore
Source§fn clone(&self) -> InMemoryProjectionStore
fn clone(&self) -> InMemoryProjectionStore
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 Default for InMemoryProjectionStore
impl Default for InMemoryProjectionStore
Source§fn default() -> InMemoryProjectionStore
fn default() -> InMemoryProjectionStore
Returns the “default value” for a type. Read more
Source§impl ProjectionStorePort for InMemoryProjectionStore
impl ProjectionStorePort for InMemoryProjectionStore
fn upsert_status<'life0, 'async_trait>(
&'life0 self,
status: RouteStatusProjection,
) -> Pin<Box<dyn Future<Output = Result<(), CamelError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_status<'life0, 'life1, 'async_trait>(
&'life0 self,
route_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<RouteStatusProjection>, CamelError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn list_statuses<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Vec<RouteStatusProjection>, CamelError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn remove_status<'life0, 'life1, 'async_trait>(
&'life0 self,
route_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<(), CamelError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for InMemoryProjectionStore
impl !RefUnwindSafe for InMemoryProjectionStore
impl Send for InMemoryProjectionStore
impl Sync for InMemoryProjectionStore
impl Unpin for InMemoryProjectionStore
impl UnsafeUnpin for InMemoryProjectionStore
impl !UnwindSafe for InMemoryProjectionStore
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