Struct ckb_types::packed::BytesReader [−][src]
Implementations
impl<'r> BytesReader<'r>[src]
pub const ITEM_SIZE: usize[src]
pub fn total_size(&self) -> usize[src]
pub fn item_count(&self) -> usize[src]
pub fn len(&self) -> usize[src]
pub fn is_empty(&self) -> bool[src]
pub fn get(&self, idx: usize) -> Option<ByteReader<'r>>[src]
pub fn get_unchecked(&self, idx: usize) -> ByteReader<'r>[src]
pub fn raw_data(&self) -> &'r [u8][src]
impl<'r> BytesReader<'r>[src]
pub fn as_utf8(&self) -> Result<&str, Utf8Error>[src]
Converts self to a string slice.
pub unsafe fn as_utf8_unchecked(&self) -> &str[src]
Converts self to a string slice without checking that the string contains valid UTF-8.
Safety
This function is unsafe because it does not check that the bytes passed to
it are valid UTF-8. If this constraint is violated, undefined behavior
results, as the rest of Rust assumes that &strs are valid UTF-8.
pub fn is_utf8(&self) -> bool[src]
Checks whether self is contains valid UTF-8 binary data.
Trait Implementations
impl<'r> Clone for BytesReader<'r>[src]
fn clone(&self) -> BytesReader<'r>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'r> Copy for BytesReader<'r>[src]
impl<'r> Debug for BytesReader<'r>[src]
impl<'r> Display for BytesReader<'r>[src]
impl<'r> LowerHex for BytesReader<'r>[src]
impl<'r> Reader<'r> for BytesReader<'r>[src]
type Entity = Bytes
const NAME: &'static str[src]
fn to_entity(&self) -> Self::Entity[src]
fn new_unchecked(slice: &'r [u8]) -> Self[src]
fn as_slice(&self) -> &'r [u8][src]
fn verify(slice: &[u8], _compatible: bool) -> VerificationResult<()>[src]
pub fn from_slice(slice: &'r [u8]) -> Result<Self, VerificationError>[src]
pub fn from_compatible_slice(slice: &'r [u8]) -> Result<Self, VerificationError>[src]
impl<'r> Unpack<Bytes> for BytesReader<'r>[src]
impl<'r> Unpack<Vec<u8, Global>> for BytesReader<'r>[src]
Auto Trait Implementations
impl<'r> RefUnwindSafe for BytesReader<'r>
impl<'r> Send for BytesReader<'r>
impl<'r> Sync for BytesReader<'r>
impl<'r> Unpin for BytesReader<'r>
impl<'r> UnwindSafe for BytesReader<'r>
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<'r, R> FromSliceShouldBeOk<'r> for R where
R: Reader<'r>, [src]
R: Reader<'r>,
pub fn from_slice_should_be_ok(&'r [u8]) -> R[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
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.
pub 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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,