pub struct FbRow { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<'a> Row<'a, Fb> for FbRow
impl<'a> Row<'a, Fb> for FbRow
Source§type InnerPartialRow = FbRow
type InnerPartialRow = FbRow
Return type of
PartialRow Read moreSource§fn get<'b, I>(&'b self, idx: I) -> Option<FieldRet<'b, Self, Fb>>where
Self: RowIndex<I>,
'a: 'b,
fn get<'b, I>(&'b self, idx: I) -> Option<FieldRet<'b, Self, Fb>>where
Self: RowIndex<I>,
'a: 'b,
Get the field with the provided index from the row. Read more
Source§fn field_count(&self) -> usize
fn field_count(&self) -> usize
Get the number of fields in the current row
Source§fn partial_row(
&self,
range: Range<usize>,
) -> PartialRow<'_, Self::InnerPartialRow>
fn partial_row( &self, range: Range<usize>, ) -> PartialRow<'_, Self::InnerPartialRow>
Returns a wrapping row that allows only to access fields, where the index is part of
the provided range.
Source§impl<'b> RowGatWorkaround<'b, Fb> for FbRow
impl<'b> RowGatWorkaround<'b, Fb> for FbRow
Auto Trait Implementations§
impl Freeze for FbRow
impl RefUnwindSafe for FbRow
impl Send for FbRow
impl Sync for FbRow
impl Unpin for FbRow
impl UnwindSafe for FbRow
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> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self to an expression for Diesel’s query builder. Read more