pub struct Row { /* private fields */ }Expand description
A row of values (tuple)
Implementations§
Source§impl Row
impl Row
Sourcepub fn into_values(self) -> Vec<Value>
pub fn into_values(self) -> Vec<Value>
Convert to owned values
Sourcepub fn from_bytes(data: &[u8]) -> Result<(Self, usize), ValueError>
pub fn from_bytes(data: &[u8]) -> Result<(Self, usize), ValueError>
Deserialize row from bytes
Trait Implementations§
Source§impl IntoIterator for Row
impl IntoIterator for Row
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 UnsafeUnpin 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