pub struct SegmentSliceVec(/* private fields */);Expand description
Segment shard vector. Size is bound by the maximum number of segments a work package may export.
Implementations§
Source§impl SegmentSliceVec
impl SegmentSliceVec
Sourcepub fn into_inner(self) -> Vec<u8> ⓘ
pub fn into_inner(self) -> Vec<u8> ⓘ
Get the underlying Vec.
Sourcepub fn from_bytes(data: Vec<u8>) -> Option<Self>
pub fn from_bytes(data: Vec<u8>) -> Option<Self>
Creates a slice vec from serialized bytes. Returns None if the size is incorrect.
Sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Preallocates a vec for the given number of slices
Sourcepub fn push(&mut self, slice: &[u8]) -> Result<(), &'static str>
pub fn push(&mut self, slice: &[u8]) -> Result<(), &'static str>
Appends a slice to this vec. Returns an error is the slice size is incorrect or if the vec overflows
Sourcepub fn push_default(&mut self) -> Result<&mut [u8], &'static str>
pub fn push_default(&mut self) -> Result<&mut [u8], &'static str>
Adds a new empty slice to the vec and returns a reference to it. Produces an error if the vec overflows.
Trait Implementations§
Source§impl Clone for SegmentSliceVec
impl Clone for SegmentSliceVec
Source§fn clone(&self) -> SegmentSliceVec
fn clone(&self) -> SegmentSliceVec
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 Debug for SegmentSliceVec
impl Debug for SegmentSliceVec
Source§impl Default for SegmentSliceVec
impl Default for SegmentSliceVec
Source§fn default() -> SegmentSliceVec
fn default() -> SegmentSliceVec
Returns the “default value” for a type. Read more
Source§impl Index<usize> for SegmentSliceVec
impl Index<usize> for SegmentSliceVec
Source§impl PartialEq for SegmentSliceVec
impl PartialEq for SegmentSliceVec
impl Eq for SegmentSliceVec
impl StructuralPartialEq for SegmentSliceVec
Auto Trait Implementations§
impl Freeze for SegmentSliceVec
impl RefUnwindSafe for SegmentSliceVec
impl Send for SegmentSliceVec
impl Sync for SegmentSliceVec
impl Unpin for SegmentSliceVec
impl UnwindSafe for SegmentSliceVec
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more