pub struct ValkeyHealthReport {
pub tls_enabled: bool,
pub database: u32,
pub protocol: ValkeyProtocolVersion,
}Expand description
Low-cardinality readiness snapshot for a Valkey connector.
Fields§
§tls_enabled: boolWhether certificate-validated TLS is active.
database: u32Selected logical database number.
protocol: ValkeyProtocolVersionProtocol negotiated by the connector.
Trait Implementations§
Source§impl Clone for ValkeyHealthReport
impl Clone for ValkeyHealthReport
Source§fn clone(&self) -> ValkeyHealthReport
fn clone(&self) -> ValkeyHealthReport
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 ValkeyHealthReport
Source§impl Debug for ValkeyHealthReport
impl Debug for ValkeyHealthReport
impl Eq for ValkeyHealthReport
Source§impl PartialEq for ValkeyHealthReport
impl PartialEq for ValkeyHealthReport
impl StructuralPartialEq for ValkeyHealthReport
Auto Trait Implementations§
impl Freeze for ValkeyHealthReport
impl RefUnwindSafe for ValkeyHealthReport
impl Send for ValkeyHealthReport
impl Sync for ValkeyHealthReport
impl Unpin for ValkeyHealthReport
impl UnsafeUnpin for ValkeyHealthReport
impl UnwindSafe for ValkeyHealthReport
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