pub struct SpringSourceRow(/* private fields */);
Expand description
Row object from an in memory sink queue.
Implementations§
Source§impl SpringSourceRow
impl SpringSourceRow
Sourcepub fn from_json(json: &str) -> Result<SpringSourceRow, SpringError>
pub fn from_json(json: &str) -> Result<SpringSourceRow, SpringError>
Create a source row from a JSON string.
§Failure
SpringError::InvalidFormat
when:json
cannot be parsed as a JSON
Trait Implementations§
Source§impl Clone for SpringSourceRow
impl Clone for SpringSourceRow
Source§fn clone(&self) -> SpringSourceRow
fn clone(&self) -> SpringSourceRow
Returns a duplicate of the value. Read more
1.0.0 · 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 SpringSourceRow
impl Debug for SpringSourceRow
Source§impl From<SpringSinkRow> for SpringSourceRow
impl From<SpringSinkRow> for SpringSourceRow
Source§fn from(sink_row: SpringSinkRow) -> SpringSourceRow
fn from(sink_row: SpringSinkRow) -> SpringSourceRow
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SpringSourceRow
impl RefUnwindSafe for SpringSourceRow
impl Send for SpringSourceRow
impl Sync for SpringSourceRow
impl Unpin for SpringSourceRow
impl UnwindSafe for SpringSourceRow
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