pub enum ValkeyConfigField {
Show 14 variants
EnvironmentPrefix,
Host,
Port,
Database,
KeyPrefix,
Username,
Password,
ConnectionTimeout,
ResponseTimeout,
RetryAttempts,
ConcurrencyLimit,
PipelineBufferSize,
TransportSecurity,
TlsCaCertificatePath,
}Expand description
Valkey configuration field identifier.
Variants§
EnvironmentPrefix
Prefix used to derive Valkey environment-variable names.
Host
Server hostname or IP address.
Port
Server TCP port.
Database
Logical database number.
KeyPrefix
Key namespace prefix.
Username
Optional ACL username.
Password
Optional password or access token.
ConnectionTimeout
Connection establishment deadline.
ResponseTimeout
Command response deadline.
RetryAttempts
Automatic reconnect attempt count.
ConcurrencyLimit
Concurrent in-flight command ceiling.
PipelineBufferSize
Outbound command queue bound.
TransportSecurity
Transport security mode.
TlsCaCertificatePath
Private TLS CA certificate path.
Trait Implementations§
Source§impl Clone for ValkeyConfigField
impl Clone for ValkeyConfigField
Source§fn clone(&self) -> ValkeyConfigField
fn clone(&self) -> ValkeyConfigField
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 moreimpl Copy for ValkeyConfigField
Source§impl Debug for ValkeyConfigField
impl Debug for ValkeyConfigField
impl Eq for ValkeyConfigField
Source§impl PartialEq for ValkeyConfigField
impl PartialEq for ValkeyConfigField
impl StructuralPartialEq for ValkeyConfigField
Auto Trait Implementations§
impl Freeze for ValkeyConfigField
impl RefUnwindSafe for ValkeyConfigField
impl Send for ValkeyConfigField
impl Sync for ValkeyConfigField
impl Unpin for ValkeyConfigField
impl UnsafeUnpin for ValkeyConfigField
impl UnwindSafe for ValkeyConfigField
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