pub struct RowDeserializer<S, P>(/* private fields */);Expand description
Row deserializer.
S – serialization side (see SerializationSide);
P – protocol.
Implementations§
Source§impl<S, P> RowDeserializer<S, P>
impl<S, P> RowDeserializer<S, P>
pub fn into_inner(self) -> Row
Trait Implementations§
Source§impl<S: Clone, P: Clone> Clone for RowDeserializer<S, P>
impl<S: Clone, P: Clone> Clone for RowDeserializer<S, P>
Source§fn clone(&self) -> RowDeserializer<S, P>
fn clone(&self) -> RowDeserializer<S, P>
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<S, P> From<RowDeserializer<S, P>> for Row
impl<S, P> From<RowDeserializer<S, P>> for Row
Source§fn from(x: RowDeserializer<S, P>) -> Self
fn from(x: RowDeserializer<S, P>) -> Self
Converts to this type from the input type.
Source§impl<'de, S: SerializationSide> MyDeserialize<'de> for RowDeserializer<S, Binary>
impl<'de, S: SerializationSide> MyDeserialize<'de> for RowDeserializer<S, Binary>
Source§impl<'de, T> MyDeserialize<'de> for RowDeserializer<T, Text>
impl<'de, T> MyDeserialize<'de> for RowDeserializer<T, Text>
impl<S, P> StructuralPartialEq for RowDeserializer<S, P>
Auto Trait Implementations§
impl<S, P> Freeze for RowDeserializer<S, P>
impl<S, P> RefUnwindSafe for RowDeserializer<S, P>where
S: RefUnwindSafe,
P: RefUnwindSafe,
impl<S, P> Send for RowDeserializer<S, P>
impl<S, P> Sync for RowDeserializer<S, P>
impl<S, P> Unpin for RowDeserializer<S, P>
impl<S, P> UnwindSafe for RowDeserializer<S, P>where
S: UnwindSafe,
P: UnwindSafe,
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