Struct rustbus::wire::marshal::traits::ObjectPath[][src]

pub struct ObjectPath<S: AsRef<str>>(_);

Implementations

impl<S: AsRef<str>> ObjectPath<S>[src]

pub fn new(path: S) -> Result<Self, Error>[src]

pub fn to_owned(&self) -> ObjectPath<String>[src]

Trait Implementations

impl<S: AsRef<str>> AsRef<str> for ObjectPath<S>[src]

impl<S: Clone + AsRef<str>> Clone for ObjectPath<S>[src]

impl<S: Debug + AsRef<str>> Debug for ObjectPath<S>[src]

impl<S: Hash + AsRef<str>> Hash for ObjectPath<S>[src]

impl<S: AsRef<str>> Marshal for ObjectPath<S>[src]

impl<S: PartialEq + AsRef<str>> PartialEq<ObjectPath<S>> for ObjectPath<S>[src]

impl<S: AsRef<str>> Signature for ObjectPath<S>[src]

impl<'buf, 'fds, S: AsRef<str> + Unmarshal<'buf, 'fds>> Unmarshal<'buf, 'fds> for ObjectPath<S>[src]

impl<S: Copy + AsRef<str>> Copy for ObjectPath<S>[src]

impl<S: Eq + AsRef<str>> Eq for ObjectPath<S>[src]

impl<S: AsRef<str>> StructuralEq for ObjectPath<S>[src]

impl<S: AsRef<str>> StructuralPartialEq for ObjectPath<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for ObjectPath<S> where
    S: RefUnwindSafe

impl<S> Send for ObjectPath<S> where
    S: Send

impl<S> Sync for ObjectPath<S> where
    S: Sync

impl<S> Unpin for ObjectPath<S> where
    S: Unpin

impl<S> UnwindSafe for ObjectPath<S> where
    S: UnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.