pub struct PoolResponse(/* private fields */);Expand description
Response data as HashMap type
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PoolResponse
impl<'de> Deserialize<'de> for PoolResponse
Source§fn 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
Source§impl Serialize for PoolResponse
impl Serialize for PoolResponse
Source§impl StructTable for &PoolResponse
impl StructTable for &PoolResponse
Source§fn instance_headers<O: StructTableOptions>(
&self,
_options: &O,
) -> Option<Vec<String>>
fn instance_headers<O: StructTableOptions>( &self, _options: &O, ) -> Option<Vec<String>>
Return Vector of table headers (attribute titles to be returned) from the instance that are
instance specific (i.e. HashMap)
Source§fn data<O: StructTableOptions>(&self, _options: &O) -> Vec<Option<String>>
fn data<O: StructTableOptions>(&self, _options: &O) -> Vec<Option<String>>
Return vector of selected fields as
Option<String>Source§fn class_headers<O>(_config: &O) -> Option<Vec<String>>where
O: StructTableOptions,
fn class_headers<O>(_config: &O) -> Option<Vec<String>>where
O: StructTableOptions,
Return Vector of table headers (attribute titles to be returned) that are not instance
specific (i.e. struct)
Source§impl StructTable for PoolResponse
impl StructTable for PoolResponse
Source§fn instance_headers<O: StructTableOptions>(
&self,
_options: &O,
) -> Option<Vec<String>>
fn instance_headers<O: StructTableOptions>( &self, _options: &O, ) -> Option<Vec<String>>
Return Vector of table headers (attribute titles to be returned) from the instance that are
instance specific (i.e. HashMap)
Source§fn data<O: StructTableOptions>(&self, _options: &O) -> Vec<Option<String>>
fn data<O: StructTableOptions>(&self, _options: &O) -> Vec<Option<String>>
Return vector of selected fields as
Option<String>Source§fn class_headers<O>(_config: &O) -> Option<Vec<String>>where
O: StructTableOptions,
fn class_headers<O>(_config: &O) -> Option<Vec<String>>where
O: StructTableOptions,
Return Vector of table headers (attribute titles to be returned) that are not instance
specific (i.e. struct)
Auto Trait Implementations§
impl Freeze for PoolResponse
impl RefUnwindSafe for PoolResponse
impl Send for PoolResponse
impl Sync for PoolResponse
impl Unpin for PoolResponse
impl UnwindSafe for PoolResponse
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