[][src]Struct dbus::ErrorName

pub struct ErrorName<'a>(_);

A wrapper around a string that is guaranteed to be a valid D-Bus bus name.

Methods

impl<'m> ErrorName<'m>[src]

pub fn new<S: Into<Vec<u8>>>(s: S) -> Result<ErrorName<'m>, String>[src]

Creates a new instance of this struct.

Note: If the no-string-validation feature is activated, this string will not be checked for conformance with the D-Bus specification.

pub fn from_slice(s: &'m [u8]) -> Result<ErrorName<'m>, String>[src]

Creates a new instance of this struct. If you end it with \0, it can borrow the slice without extra allocation.

Note: If the no-string-validation feature is activated, this string will not be checked for conformance with the D-Bus specification.

pub unsafe fn from_slice_unchecked(s: &'m [u8]) -> ErrorName<'m>[src]

This function creates a new instance of this struct, without checking. It's up to you to guarantee that s ends with a \0 and is valid.

pub fn as_cstr(&self) -> &CStr[src]

View this struct as a CStr.

pub fn into_static(self) -> ErrorName<'static>[src]

Makes sure this string does not contain borrows.

pub fn into_cstring(self) -> CString[src]

Converts this struct to a CString.

Trait Implementations

impl<'m> From<String> for ErrorName<'m>[src]

#Panics

If given string is not valid.

impl<'m> From<&'m String> for ErrorName<'m>[src]

#Panics

If given string is not valid.

impl<'m> From<&'m str> for ErrorName<'m>[src]

#Panics

If given string is not valid.

impl<'m> From<ErrorName<'m>> for CString[src]

impl<'m> From<Cow<'m, str>> for ErrorName<'m>[src]

#Panics

If given string is not valid.

impl<'inner, 'm: 'inner> From<&'m ErrorName<'inner>> for ErrorName<'m>[src]

impl<'a> PartialEq<ErrorName<'a>> for ErrorName<'a>[src]

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

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'m> AsRef<CStr> for ErrorName<'m>[src]

impl<'a> PartialOrd<ErrorName<'a>> for ErrorName<'a>[src]

impl<'a> Eq for ErrorName<'a>[src]

impl<'a> Ord for ErrorName<'a>[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl<'m> Deref for ErrorName<'m>[src]

type Target = str

The resulting type after dereferencing.

impl<'m> Display for ErrorName<'m>[src]

impl<'a> Debug for ErrorName<'a>[src]

impl<'m> Hash for ErrorName<'m>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<'a> Unpin for ErrorName<'a>

impl<'a> Sync for ErrorName<'a>

impl<'a> Send for ErrorName<'a>

impl<'a> RefUnwindSafe for ErrorName<'a>

impl<'a> UnwindSafe for ErrorName<'a>

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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

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

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