pub struct FetchRowInput<'a> {
pub table_id: &'a PsqlTableIdentity,
pub column_name: &'a str,
pub column_value: &'a PsqlParamValue,
}Fields§
§table_id: &'a PsqlTableIdentity§column_name: &'a str§column_value: &'a PsqlParamValueImplementations§
Source§impl<'b> FetchRowInput<'b>
impl<'b> FetchRowInput<'b>
pub fn psql_param_value<'a>( column_value: String, column: PsqlTableColumn, ) -> ResultAnyError<PsqlParamValue>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for FetchRowInput<'a>
impl<'a> !UnwindSafe for FetchRowInput<'a>
impl<'a> Freeze for FetchRowInput<'a>
impl<'a> Send for FetchRowInput<'a>
impl<'a> Sync for FetchRowInput<'a>
impl<'a> Unpin for FetchRowInput<'a>
impl<'a> UnsafeUnpin for FetchRowInput<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more