Skip to main content

NrStr

Struct NrStr 

Source
#[repr(C)]
pub struct NrStr { pub ptr: *const u8, pub len: u32, pub _reserved: u32, }
Expand description

A UTF-8 string slice with a pointer and length. This struct is #[repr(C)] and ABI-stable.

On 64-bit targets _reserved occupies the four bytes after len that would otherwise be implicit padding. Producers must set it to zero.

Fields§

§ptr: *const u8§len: u32§_reserved: u32

Implementations§

Source§

impl NrStr

Source

pub fn new(s: &str) -> Self

Creates a borrowed ABI string view.

The returned value must not be used to access the string after s is invalidated. Use NrStr::as_str only while the source is alive.

Source

pub const fn from_static(s: &'static str) -> Self

Creates a borrowed ABI view from a static string.

Source

pub unsafe fn as_str<'a>(&self) -> Result<&'a str, NrViewError>

Reads this ABI view as UTF-8.

§Safety

For a non-empty view, ptr must be valid for reads of len bytes for the lifetime of the returned reference. The pointed-to memory must not be mutated while that reference exists.

Source

pub unsafe fn as_bytes<'a>(&self) -> Result<&'a [u8], NrViewError>

Reads this ABI view’s raw bytes without validating UTF-8.

§Safety

For a non-empty view, ptr must be valid for reads of len bytes for the lifetime of the returned reference. The pointed-to memory must not be mutated while that reference exists.

Source

pub const fn is_empty(&self) -> bool

Returns whether this view contains no bytes.

Source

pub const fn len(&self) -> usize

Returns the view length in bytes.

Source

pub const fn as_ptr(&self) -> *const u8

Returns the underlying raw pointer.

Source

pub fn clear(&mut self)

Resets this view without freeing the borrowed memory.

Trait Implementations§

Source§

impl Clone for NrStr

Source§

fn clone(&self) -> NrStr

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for NrStr

Source§

impl Debug for NrStr

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NrStr

Source§

fn default() -> NrStr

Returns the “default value” for a type. Read more
Source§

impl Send for NrStr

Source§

impl Sync for NrStr

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.