#[non_exhaustive]pub struct ValkeyConnection {
pub host: String,
pub port: u16,
pub tls: bool,
pub cluster: bool,
}Expand description
Valkey-specific connection parameters.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.host: StringValkey hostname.
port: u16Valkey port.
tls: boolEnable TLS for the Valkey connection.
cluster: boolEnable Valkey cluster mode.
Implementations§
Trait Implementations§
Source§impl Clone for ValkeyConnection
impl Clone for ValkeyConnection
Source§fn clone(&self) -> ValkeyConnection
fn clone(&self) -> ValkeyConnection
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 ValkeyConnection
impl Debug for ValkeyConnection
Source§impl PartialEq for ValkeyConnection
impl PartialEq for ValkeyConnection
impl Eq for ValkeyConnection
impl StructuralPartialEq for ValkeyConnection
Auto Trait Implementations§
impl Freeze for ValkeyConnection
impl RefUnwindSafe for ValkeyConnection
impl Send for ValkeyConnection
impl Sync for ValkeyConnection
impl Unpin for ValkeyConnection
impl UnsafeUnpin for ValkeyConnection
impl UnwindSafe for ValkeyConnection
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