pub struct CheckpointerConfig {
pub params: HashMap<String, Value>,
}
Expand description
Configuration for a checkpointer instance.
Fields§
§params: HashMap<String, Value>
Additional configuration parameters specific to the checkpointer implementation.
Trait Implementations§
Source§impl Clone for CheckpointerConfig
impl Clone for CheckpointerConfig
Source§fn clone(&self) -> CheckpointerConfig
fn clone(&self) -> CheckpointerConfig
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 Debug for CheckpointerConfig
impl Debug for CheckpointerConfig
Source§impl Default for CheckpointerConfig
impl Default for CheckpointerConfig
Source§fn default() -> CheckpointerConfig
fn default() -> CheckpointerConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckpointerConfig
impl<'de> Deserialize<'de> for CheckpointerConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CheckpointerConfig
impl RefUnwindSafe for CheckpointerConfig
impl Send for CheckpointerConfig
impl Sync for CheckpointerConfig
impl Unpin for CheckpointerConfig
impl UnwindSafe for CheckpointerConfig
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