Struct data_buffer::DataBuffer
source · pub struct DataBuffer { /* private fields */ }
Expand description
Buffer of plain old data (POD). The data is stored as an array of bytes (Vec<u8>
).
DataBuffer
keeps track of the type stored within via an explicit TypeId
member. This allows
one to hide the type from the compiler and check it only when necessary. It is particularly
useful when the type of data is determined at runtime (e.g. when parsing numeric data).
Implementations§
source§impl DataBuffer
impl DataBuffer
sourcepub fn with_size<T: Any + Clone>(n: usize, def: T) -> Self
pub fn with_size<T: Any + Clone>(n: usize, def: T) -> Self
Construct a typed DataBuffer
with a given size and filled with the specified default
value.
Examples
let buf = DataBuffer::with_size(8, 42usize); // Create buffer
let buf_vec: Vec<usize> = buf.into_vec().unwrap(); // Convert into `Vec`
assert_eq!(buf_vec, vec![42usize; 8]);
sourcepub fn from_vec<T: Any>(vec: Vec<T>) -> Self
pub fn from_vec<T: Any>(vec: Vec<T>) -> Self
Construct a DataBuffer
from a given Vec<T>
reusing the space already allocated by the
given vector.
Examples
let vec = vec![1u8, 3, 4, 1, 2];
let buf = DataBuffer::from_vec(vec.clone()); // Convert into buffer
let nu_vec: Vec<u8> = buf.into_vec().unwrap(); // Convert back into `Vec`
assert_eq!(vec, nu_vec);
sourcepub fn from_slice<T: Any + Clone>(slice: &[T]) -> Self
pub fn from_slice<T: Any + Clone>(slice: &[T]) -> Self
Construct a DataBuffer
from a given slice by cloning the data.
sourcepub fn copy_from_slice<T: Any + Copy>(&mut self, slice: &[T]) -> &mut Self
pub fn copy_from_slice<T: Any + Copy>(&mut self, slice: &[T]) -> &mut Self
Copy data from a given slice into the current buffer.
sourcepub fn fill<T: Any + Clone>(&mut self, def: T) -> Option<&mut Self>
pub fn fill<T: Any + Clone>(&mut self, def: T) -> Option<&mut Self>
Fill the current buffer with copies of the given value. The size of the buffer is left
unchanged. If the given type doesn’t patch the internal type, None
is returned, otherwise
a mut reference to the modified buffer is returned.
Examples
let vec = vec![1u8, 3, 4, 1, 2];
let mut buf = DataBuffer::from_vec(vec.clone()); // Convert into buffer
buf.fill(0u8);
assert_eq!(buf.into_vec::<u8>().unwrap(), vec![0u8, 0, 0, 0, 0]);
sourcepub fn check<T: Any>(self) -> Option<Self>
pub fn check<T: Any>(self) -> Option<Self>
Check if the current buffer contains elements of the specified type. Returns Some(self)
if the type matches and None
otherwise.
sourcepub fn check_ref<T: Any>(&self) -> Option<&Self>
pub fn check_ref<T: Any>(&self) -> Option<&Self>
Check if the current buffer contains elements of the specified type. Returns None
if the
check fails, otherwise a reference to self is returned.
sourcepub fn check_mut<T: Any>(&mut self) -> Option<&mut Self>
pub fn check_mut<T: Any>(&mut self) -> Option<&mut Self>
Check if the current buffer contains elements of the specified type. Same as check_ref
but consumes and produces a mut reference to self.
sourcepub fn iter<'a, T: Any + 'a>(&'a self) -> Option<Iter<'_, T>>
pub fn iter<'a, T: Any + 'a>(&'a self) -> Option<Iter<'_, T>>
Return an iterator to a slice representing typed data.
Returs None
if the given type T
doesn’t match the internal.
Examples
let vec = vec![1.0_f32, 23.0, 0.01, 42.0, 11.43];
let buf = DataBuffer::from(vec.clone()); // Convert into buffer
for (i, &val) in buf.iter::<f32>().unwrap().enumerate() {
assert_eq!(val, vec[i]);
}
sourcepub fn iter_mut<'a, T: Any + 'a>(&'a mut self) -> Option<IterMut<'_, T>>
pub fn iter_mut<'a, T: Any + 'a>(&'a mut self) -> Option<IterMut<'_, T>>
Return an iterator to a mutable slice representing typed data.
Returs None
if the given type T
doesn’t match the internal.
sourcepub fn append_clone_to_vec<'a, T>(
&self,
vec: &'a mut Vec<T>
) -> Option<&'a mut Vec<T>>where
T: Any + Clone,
pub fn append_clone_to_vec<'a, T>(
&self,
vec: &'a mut Vec<T>
) -> Option<&'a mut Vec<T>>where
T: Any + Clone,
Append cloned items from this buffer to a given Vec<T>
. Return the mutable reference
Some(vec)
if type matched the internal type and None
otherwise.
sourcepub fn append_copy_to_vec<'a, T>(
&self,
vec: &'a mut Vec<T>
) -> Option<&'a mut Vec<T>>where
T: Any + Copy,
pub fn append_copy_to_vec<'a, T>(
&self,
vec: &'a mut Vec<T>
) -> Option<&'a mut Vec<T>>where
T: Any + Copy,
Append copied items from this buffer to a given Vec<T>
. Return the mutable reference
Some(vec)
if type matched the internal type and None
otherwise. This may be faster than
append_clone_to_vec
.
sourcepub fn clone_into_vec<T: Any + Clone>(&self) -> Option<Vec<T>>
pub fn clone_into_vec<T: Any + Clone>(&self) -> Option<Vec<T>>
Clones contents of self
into the given Vec
.
sourcepub fn copy_into_vec<T: Any + Copy>(&self) -> Option<Vec<T>>
pub fn copy_into_vec<T: Any + Copy>(&self) -> Option<Vec<T>>
Copies contents of self
into the given Vec
.
sourcepub fn into_vec<T: Any>(self) -> Option<Vec<T>>
pub fn into_vec<T: Any>(self) -> Option<Vec<T>>
An alternative to using the Into
trait. This function helps the compiler
determine the type T
automatically.
sourcepub fn as_slice<T: Any>(&self) -> Option<&[T]>
pub fn as_slice<T: Any>(&self) -> Option<&[T]>
Convert this buffer into a typed slice.
Returs None
if the given type T
doesn’t match the internal.
sourcepub fn as_mut_slice<T: Any>(&mut self) -> Option<&mut [T]>
pub fn as_mut_slice<T: Any>(&mut self) -> Option<&mut [T]>
Convert this buffer into a typed mutable slice.
Returs None
if the given type T
doesn’t match the internal.
sourcepub fn get<T: Any + Copy>(&self, i: usize) -> Option<T>
pub fn get<T: Any + Copy>(&self, i: usize) -> Option<T>
Get i
’th element of the buffer by value.
sourcepub fn get_ref<T: Any>(&self, i: usize) -> Option<&T>
pub fn get_ref<T: Any>(&self, i: usize) -> Option<&T>
Get a const
reference to the i
’th element of the buffer.
sourcepub fn get_mut<T: Any>(&mut self, i: usize) -> Option<&mut T>
pub fn get_mut<T: Any>(&mut self, i: usize) -> Option<&mut T>
Get a mutable reference to the i
’th element of the buffer.
sourcepub unsafe fn get_unchecked<T: Any + Copy>(&self, i: usize) -> T
pub unsafe fn get_unchecked<T: Any + Copy>(&self, i: usize) -> T
Get i
’th element of the buffer by value without checking type.
This can be used to reinterpret the internal data as a different type. Note that if the
size of the given type T
doesn’t match the size of the internal type, i
will really
index the i
th T
sized chunk in the current buffer. See the implementation for details.
sourcepub unsafe fn get_unchecked_ref<T: Any>(&self, i: usize) -> &T
pub unsafe fn get_unchecked_ref<T: Any>(&self, i: usize) -> &T
Get a const
reference to the i
’th element of the buffer.
This can be used to reinterpret the internal data as a different type. Note that if the
size of the given type T
doesn’t match the size of the internal type, i
will really
index the i
th T
sized chunk in the current buffer. See the implementation for details.
sourcepub unsafe fn get_unchecked_mut<T: Any>(&mut self, i: usize) -> &mut T
pub unsafe fn get_unchecked_mut<T: Any>(&mut self, i: usize) -> &mut T
Get a mutable reference to the i
’th element of the buffer.
This can be used to reinterpret the internal data as a different type. Note that if the
size of the given type T
doesn’t match the size of the internal type, i
will really
index the i
th T
sized chunk in the current buffer. See the implementation for details.
sourcepub fn reinterpret_as_vec<T>(self) -> Vec<T>
pub fn reinterpret_as_vec<T>(self) -> Vec<T>
Move buffer data to a vector with a given type, reinterpreting the data type as required.
sourcepub fn reinterpret_as_slice<T>(&self) -> &[T] ⓘ
pub fn reinterpret_as_slice<T>(&self) -> &[T] ⓘ
Borrow buffer data and reinterpret it as a slice of a given type.
sourcepub fn reinterpret_as_mut_slice<T>(&mut self) -> &mut [T] ⓘ
pub fn reinterpret_as_mut_slice<T>(&mut self) -> &mut [T] ⓘ
Mutably borrow buffer data and reinterpret it as a mutable slice of a given type.
sourcepub fn reinterpret_iter<T>(&self) -> Iter<'_, T>
pub fn reinterpret_iter<T>(&self) -> Iter<'_, T>
Borrow buffer data and iterate over reinterpreted underlying data.
sourcepub fn reinterpret_iter_mut<T>(&mut self) -> IterMut<'_, T>
pub fn reinterpret_iter_mut<T>(&mut self) -> IterMut<'_, T>
Mutably borrow buffer data and mutably iterate over reinterpreted underlying data.
sourcepub fn raw_mut_data(&mut self) -> &mut Vec<u8>
pub fn raw_mut_data(&mut self) -> &mut Vec<u8>
Get a mutable reference to the internal data representation.
Trait Implementations§
source§impl Clone for DataBuffer
impl Clone for DataBuffer
source§fn clone(&self) -> DataBuffer
fn clone(&self) -> DataBuffer
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DataBuffer
impl Debug for DataBuffer
source§impl<'a, T> From<&'a [T]> for DataBufferwhere
T: Any + Clone,
impl<'a, T> From<&'a [T]> for DataBufferwhere
T: Any + Clone,
Convert a &[T]
to a DataBuffer
.
source§fn from(slice: &'a [T]) -> DataBuffer
fn from(slice: &'a [T]) -> DataBuffer
source§impl<T> From<Vec<T, Global>> for DataBufferwhere
T: Any,
impl<T> From<Vec<T, Global>> for DataBufferwhere
T: Any,
Convert a Vec<T>
to a DataBuffer
.
source§fn from(vec: Vec<T>) -> DataBuffer
fn from(vec: Vec<T>) -> DataBuffer
source§impl Hash for DataBuffer
impl Hash for DataBuffer
source§impl<T> Into<Option<Vec<T, Global>>> for DataBufferwhere
T: Any + Clone,
impl<T> Into<Option<Vec<T, Global>>> for DataBufferwhere
T: Any + Clone,
Convert a DataBuffer
to a Option<Vec<T>>
.