[][src]Struct mynewt::Strn

pub struct Strn<'a> {
    pub rep: StrnRep<'a>,
}

Represents a null-terminated string, suitable for passing to Mynewt APIs as * const char. The string could be a null-terminated byte string created in Rust, or a pointer to a null-terminated string returned by C. Pointer may be null.

Fields

rep: StrnRep<'a>

Either a byte string terminated with null, or a pointer to a null-terminated string

Implementations

impl<'a> Strn<'a>[src]

pub fn new(bs: &[u8]) -> Strn<'_>[src]

Create a new Strn with a byte string. Fail if the last byte is not zero.

Strn::new(b"network\0")
strn!("network")

pub fn from_cstr(cstr: *const u8) -> Strn<'a>[src]

Create a new Strn with a null-terminated string pointer returned by C.

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

Return a pointer to the string

pub fn len(&self) -> usize[src]

Return the length of the string, excluding the terminating null. For safety, we limit to 128.

pub fn is_empty(&self) -> bool[src]

Return true if the string is empty

pub fn as_cstr(&self) -> *const u8[src]

Return the byte string as a null-terminated * const char C-style string. Fail if the last byte is not zero.

pub fn as_bytestr(&self) -> &'a [u8][src]

Return the byte string. Fail if the last byte is not zero.

pub fn validate(&self)[src]

Fail if the last byte is not zero.

pub fn validate_bytestr(bs: &'static [u8])[src]

Fail if the last byte is not zero.

Trait Implementations

impl<'a> Clone for Strn<'a>[src]

impl<'a> Copy for Strn<'a>[src]

impl<'a> Send for Strn<'a>[src]

Allow threads to share Strn, since it is static.

impl<'a> Sync for Strn<'a>[src]

Allow threads to share Strn, since it is static.

impl<'a> ToBytesOptionalNull for Strn<'a>[src]

Convert the type to array of bytes that may or may not end with null. Strn always ends with null.

fn to_bytes_optional_nul(&self) -> &[u8][src]

Convert the type to array of bytes that may or may not end with null. Strn always ends with null.

Auto Trait Implementations

impl<'a> Unpin for Strn<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.