pub struct PostgresWithCursor {
pub cursor: Option<Cursor>,
pub postgres: Option<Postgres>,
}Expand description
PostgresWithCursor
JSON schema
{
"type": "object",
"properties": {
"cursor": {
"$ref": "#/components/schemas/cursor"
},
"postgres": {
"$ref": "#/components/schemas/postgres"
}
}
}Fields§
§cursor: Option<Cursor>§postgres: Option<Postgres>Trait Implementations§
Source§impl Clone for PostgresWithCursor
impl Clone for PostgresWithCursor
Source§fn clone(&self) -> PostgresWithCursor
fn clone(&self) -> PostgresWithCursor
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 moreSource§impl Debug for PostgresWithCursor
impl Debug for PostgresWithCursor
Source§impl Default for PostgresWithCursor
impl Default for PostgresWithCursor
Source§impl<'de> Deserialize<'de> for PostgresWithCursor
impl<'de> Deserialize<'de> for PostgresWithCursor
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
Auto Trait Implementations§
impl Freeze for PostgresWithCursor
impl RefUnwindSafe for PostgresWithCursor
impl Send for PostgresWithCursor
impl Sync for PostgresWithCursor
impl Unpin for PostgresWithCursor
impl UnsafeUnpin for PostgresWithCursor
impl UnwindSafe for PostgresWithCursor
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