pub struct EntrypointConfig {
pub checkpointer: Option<Arc<dyn CheckpointSaver>>,
pub store: Option<Arc<dyn Store>>,
}Expand description
Entry point configuration for graph execution
Specifies the checkpointer and store to use when starting a graph execution, enabling persistence and cross-thread state management.
Fields§
§checkpointer: Option<Arc<dyn CheckpointSaver>>Optional checkpointer for state persistence
store: Option<Arc<dyn Store>>Optional store for cross-thread state
Trait Implementations§
Source§impl Clone for EntrypointConfig
impl Clone for EntrypointConfig
Source§fn clone(&self) -> EntrypointConfig
fn clone(&self) -> EntrypointConfig
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 moreSource§impl Debug for EntrypointConfig
impl Debug for EntrypointConfig
Source§impl Default for EntrypointConfig
impl Default for EntrypointConfig
Source§fn default() -> EntrypointConfig
fn default() -> EntrypointConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for EntrypointConfig
impl !UnwindSafe for EntrypointConfig
impl Freeze for EntrypointConfig
impl Send for EntrypointConfig
impl Sync for EntrypointConfig
impl Unpin for EntrypointConfig
impl UnsafeUnpin for EntrypointConfig
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