pub struct Nodes2Reader<'r>(/* private fields */);
Implementations§
Source§impl<'r> Nodes2Reader<'r>
impl<'r> Nodes2Reader<'r>
pub const FIELD_COUNT: usize = 2usize
pub fn total_size(&self) -> usize
pub fn field_count(&self) -> usize
pub fn count_extra_fields(&self) -> usize
pub fn has_extra_fields(&self) -> bool
pub fn announce(&self) -> BoolReader<'r>
pub fn items(&self) -> Node2VecReader<'r>
Trait Implementations§
Source§impl<'r> Clone for Nodes2Reader<'r>
impl<'r> Clone for Nodes2Reader<'r>
Source§fn clone(&self) -> Nodes2Reader<'r>
fn clone(&self) -> Nodes2Reader<'r>
Returns a copy 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<'r> Debug for Nodes2Reader<'r>
impl<'r> Debug for Nodes2Reader<'r>
Source§impl<'r> Display for Nodes2Reader<'r>
impl<'r> Display for Nodes2Reader<'r>
Source§impl<'r> LowerHex for Nodes2Reader<'r>
impl<'r> LowerHex for Nodes2Reader<'r>
Source§impl<'r> Reader<'r> for Nodes2Reader<'r>
impl<'r> Reader<'r> for Nodes2Reader<'r>
const NAME: &'static str = "Nodes2Reader"
type Entity = Nodes2
fn to_entity(&self) -> Self::Entity
fn new_unchecked(slice: &'r [u8]) -> Self
fn as_slice(&self) -> &'r [u8] ⓘ
fn verify(slice: &[u8], compatible: bool) -> VerificationResult<()>
fn from_slice(slice: &'r [u8]) -> Result<Self, VerificationError>
fn from_compatible_slice(slice: &'r [u8]) -> Result<Self, VerificationError>
impl<'r> Copy for Nodes2Reader<'r>
Auto Trait Implementations§
impl<'r> Freeze for Nodes2Reader<'r>
impl<'r> RefUnwindSafe for Nodes2Reader<'r>
impl<'r> Send for Nodes2Reader<'r>
impl<'r> Sync for Nodes2Reader<'r>
impl<'r> Unpin for Nodes2Reader<'r>
impl<'r> UnwindSafe for Nodes2Reader<'r>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<'r, R> FromSliceShouldBeOk<'r> for Rwhere
R: Reader<'r>,
impl<'r, R> FromSliceShouldBeOk<'r> for Rwhere
R: Reader<'r>,
Source§fn from_slice_should_be_ok(slice: &'r [u8]) -> R
fn from_slice_should_be_ok(slice: &'r [u8]) -> R
Unwraps the result of
from_slice(..)
with confidence and we assume that it’s impossible to fail.Source§fn from_compatible_slice_should_be_ok(slice: &'r [u8]) -> R
fn from_compatible_slice_should_be_ok(slice: &'r [u8]) -> R
Unwraps the result of
from_compatible_slice(..)
with confidence and we assume that it’s impossible to fail.