pub struct LongValue<'a> { /* private fields */ }Implementations§
Source§impl LongValue<'_>
impl LongValue<'_>
Sourcepub fn variant(&self) -> Value
pub fn variant(&self) -> Value
Gets an empty Value representing the type of the data stored in the column.
pub fn vec(&self) -> Result<Vec<u8>>
pub fn utf8(&self) -> Result<String>
pub fn count_segments(&self) -> Result<i32>
pub fn segment(&self, entry: i32) -> Result<Vec<u8>>
pub fn iter_segments( &self, ) -> Result<impl Iterator<Item = Result<Vec<u8>>> + '_>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LongValue<'a>
impl<'a> RefUnwindSafe for LongValue<'a>
impl<'a> !Send for LongValue<'a>
impl<'a> !Sync for LongValue<'a>
impl<'a> Unpin for LongValue<'a>
impl<'a> UnwindSafe for LongValue<'a>
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