[−][src]Struct flatdata::ExternalVector
Vector which flushes its content when growing.
Useful for serialization of data which does not fully fit in memory.
External vector does not provide access to elements previously added to it.
Only the last element added to the vector using the result of the method
grow
can be accessed and written.
An external vector must be closed, after the last element was written to it. After closing, it can not be used anymore.
Examples
struct A {
x : u32 : 16;
y : u32 : 16;
}
archive X {
data : vector< A >;
}
use flatdata::MemoryResourceStorage; use flatdata::test::{A, X, XBuilder}; let storage = MemoryResourceStorage::new("/root/extvec"); let builder = XBuilder::new(storage.clone()).expect("failed to create builder"); { let mut v = builder.start_data().expect("failed to start"); let mut a = v.grow().expect("grow failed"); a.set_x(0); a.set_y(1); let mut a = v.grow().expect("grow failed"); a.set_x(2); a.set_y(3); let view = v.close().expect("close failed"); // data can also be inspected directly after closing assert_eq!(view.len(), 2); assert_eq!(view[0].x(), 0); assert_eq!(view[0].y(), 1); } let archive = X::open(storage).expect("failed to open"); let view = archive.data(); assert_eq!(view[1].x(), 2); assert_eq!(view[1].y(), 3);
Implementations
impl<'a, T> ExternalVector<'a, T> where
T: Struct,
[src]
T: Struct,
pub fn new(resource_handle: ResourceHandle<'a>) -> Self
[src]
Creates an empty ExternalVector<T>
in the given resource storage.
pub fn len(&self) -> usize
[src]
Number of elements that where added to this vector.
pub fn is_empty(&self) -> bool
[src]
Returns true
if no element were added to this vector yet.
pub fn grow(&mut self) -> Result<&mut T>
[src]
Appends an element to the end of this vector and returns a mutable handle to it.
Calling this method may flush data to storage (cf. flush
), which
may fail due to different IO reasons.
pub fn close(self) -> Result<&'a [T], ResourceStorageError>
[src]
Flushes the remaining not yet flushed elements in this vector and finalizes the data inside the storage.
An external vector must be closed
Trait Implementations
impl<'_, T> Debug for ExternalVector<'_, T> where
T: Struct,
[src]
T: Struct,
Auto Trait Implementations
impl<'a, T> !RefUnwindSafe for ExternalVector<'a, T>
impl<'a, T> !Send for ExternalVector<'a, T>
impl<'a, T> !Sync for ExternalVector<'a, T>
impl<'a, T> Unpin for ExternalVector<'a, T> where
T: Unpin,
T: Unpin,
impl<'a, T> !UnwindSafe for ExternalVector<'a, T>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,