pub struct Row {
pub columns: Vec<Option<CqlValue>>,
}
Fields§
§columns: Vec<Option<CqlValue>>
Implementations§
Source§impl Row
impl Row
Sourcepub fn into_typed<RowT: FromRow>(self) -> StdResult<RowT, FromRowError>
pub fn into_typed<RowT: FromRow>(self) -> StdResult<RowT, FromRowError>
Allows converting Row into tuple of rust types or custom struct deriving FromRow
Trait Implementations§
impl StructuralPartialEq for Row
Auto Trait Implementations§
impl Freeze for Row
impl RefUnwindSafe for Row
impl Send for Row
impl Sync for Row
impl Unpin for Row
impl UnwindSafe for Row
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