pub struct SpringSinkRow(/* private fields */);
Expand description
Row object from an in memory sink queue.
Implementations§
Source§impl SpringSinkRow
impl SpringSinkRow
Sourcepub fn get_not_null_by_index<T>(&self, i_col: usize) -> Result<T>where
T: SpringValue,
pub fn get_not_null_by_index<T>(&self, i_col: usize) -> Result<T>where
T: SpringValue,
Get a i-th column value from the row.
§Failure
- SpringError::Sql when:
- Column index out of range
- SpringError::Null when:
- Column value is NULL
Trait Implementations§
Source§impl Debug for SpringSinkRow
impl Debug for SpringSinkRow
Source§impl From<SpringSinkRow> for SpringSourceRow
impl From<SpringSinkRow> for SpringSourceRow
Source§fn from(sink_row: SpringSinkRow) -> Self
fn from(sink_row: SpringSinkRow) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpringSinkRow
impl RefUnwindSafe for SpringSinkRow
impl Send for SpringSinkRow
impl Sync for SpringSinkRow
impl Unpin for SpringSinkRow
impl UnwindSafe for SpringSinkRow
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