pub struct CheckpointNotifierConfig {
pub redis_url: String,
pub instance_id: String,
pub enabled: bool,
}Expand description
Configuration for the checkpoint notifier.
Fields§
§redis_url: StringRedis URL for pub/sub.
instance_id: StringInstance ID used for channel namespacing.
enabled: boolWhether notification publishing is enabled.
Implementations§
Trait Implementations§
Source§impl Clone for CheckpointNotifierConfig
impl Clone for CheckpointNotifierConfig
Source§fn clone(&self) -> CheckpointNotifierConfig
fn clone(&self) -> CheckpointNotifierConfig
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 CheckpointNotifierConfig
impl Debug for CheckpointNotifierConfig
Auto Trait Implementations§
impl Freeze for CheckpointNotifierConfig
impl RefUnwindSafe for CheckpointNotifierConfig
impl Send for CheckpointNotifierConfig
impl Sync for CheckpointNotifierConfig
impl Unpin for CheckpointNotifierConfig
impl UnsafeUnpin for CheckpointNotifierConfig
impl UnwindSafe for CheckpointNotifierConfig
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