[][src]Struct fwd_ad::owning_markers::RO

pub struct RO;

A type used to indicate read-only capability

An empty struct, only deriving common traits. There isn't anything really interesting to see here.

Trait Implementations

impl Clone for RO[src]

impl<F, T: ROAble<F> + ?Sized> CompatibleWith<RO, F> for T[src]

Being read-only means containers only need to have the capability to borrow their content, not necessarily mutably.

impl Copy for RO[src]

impl Debug for RO[src]

impl Default for RO[src]

impl Eq for RO[src]

impl Hash for RO[src]

impl OwningMode for RO[src]

impl PartialEq<RO> for RO[src]

impl StructuralEq for RO[src]

impl StructuralPartialEq for RO[src]

Auto Trait Implementations

impl RefUnwindSafe for RO

impl Send for RO

impl Sync for RO

impl Unpin for RO

impl UnwindSafe for RO

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.