[−][src]Struct mynewt::Strn
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
Either a byte string terminated with null, or a pointer to a null-terminated string
Methods
impl Strn
[src]
pub fn new(bs: &'static [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
[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) -> &'static [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 Clone for Strn
[src]
fn clone(&self) -> Strn
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Strn
[src]
impl Send for Strn
[src]
Allow threads to share Strn, since it is static.
impl Sync for Strn
[src]
Allow threads to share Strn, since it is static.
impl ToBytesOptionalNull for Strn
[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
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,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
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.
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>,