#[non_exhaustive]pub struct PoolReadyEvent {
pub address: ServerAddress,
}Expand description
Event emitted when a connection pool becomes ready.
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.address: ServerAddressThe address of the server that the pool’s connections will connect to.
Trait Implementations
sourceimpl Clone for PoolReadyEvent
impl Clone for PoolReadyEvent
sourcefn clone(&self) -> PoolReadyEvent
fn clone(&self) -> PoolReadyEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PoolReadyEvent
impl Debug for PoolReadyEvent
sourceimpl<'de> Deserialize<'de> for PoolReadyEvent
impl<'de> Deserialize<'de> for PoolReadyEvent
sourcefn 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
sourceimpl PartialEq<PoolReadyEvent> for PoolReadyEvent
impl PartialEq<PoolReadyEvent> for PoolReadyEvent
sourcefn eq(&self, other: &PoolReadyEvent) -> bool
fn eq(&self, other: &PoolReadyEvent) -> bool
sourceimpl Serialize for PoolReadyEvent
impl Serialize for PoolReadyEvent
impl StructuralPartialEq for PoolReadyEvent
Auto Trait Implementations
impl RefUnwindSafe for PoolReadyEvent
impl Send for PoolReadyEvent
impl Sync for PoolReadyEvent
impl Unpin for PoolReadyEvent
impl UnwindSafe for PoolReadyEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more