pub struct BackLinkVec(/* private fields */);Implementations§
Source§impl BackLinkVec
impl BackLinkVec
pub fn total_size(&self) -> usize
pub fn item_count(&self) -> usize
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn get(&self, idx: usize) -> Option<BackLink>
pub fn get_unchecked(&self, idx: usize) -> BackLink
pub fn as_reader<'r>(&'r self) -> BackLinkVecReader<'r>
Trait Implementations§
Source§impl Clone for BackLinkVec
impl Clone for BackLinkVec
Source§fn clone(&self) -> BackLinkVec
fn clone(&self) -> BackLinkVec
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 BackLinkVec
impl Debug for BackLinkVec
Source§impl Default for BackLinkVec
impl Default for BackLinkVec
Source§impl Display for BackLinkVec
impl Display for BackLinkVec
Source§impl Entity for BackLinkVec
impl Entity for BackLinkVec
const NAME: &'static str = "BackLinkVec"
type Builder = BackLinkVecBuilder
fn new_unchecked(data: Bytes) -> Self
fn as_bytes(&self) -> Bytes
fn as_slice(&self) -> &[u8]
fn from_slice(slice: &[u8]) -> VerificationResult<Self>
fn from_compatible_slice(slice: &[u8]) -> VerificationResult<Self>
fn new_builder() -> Self::Builder
fn as_builder(self) -> Self::Builder
Source§impl IntoIterator for BackLinkVec
impl IntoIterator for BackLinkVec
Auto Trait Implementations§
impl Freeze for BackLinkVec
impl RefUnwindSafe for BackLinkVec
impl Send for BackLinkVec
impl Sync for BackLinkVec
impl Unpin for BackLinkVec
impl UnwindSafe for BackLinkVec
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