Struct async_rustbus::rustbus_core::wire::marshal::traits::ObjectPath[][src]

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

Implementations

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

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

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

Trait Implementations

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

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

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

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

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

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

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

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

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

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

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

impl<S> StructuralPartialEq for ObjectPath<S> where
    S: AsRef<str>, 
[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.