[][src]Struct hogwild::Hogwild

pub struct Hogwild<T>(_);

Hogwild for arbitrary data types.

Hogwild subverts Rust's type system by allowing concurrent modification of values. This should only be used for data types that cannot end up in an inconsistent state due to data races. For arrays HogwildArray should be preferred.

Trait Implementations

impl<T> Send for Hogwild<T>[src]

impl<T> Sync for Hogwild<T>[src]

impl<T: Clone> Clone for Hogwild<T>[src]

impl<T> Default for Hogwild<T> where
    T: Default
[src]

impl<T> Deref for Hogwild<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for Hogwild<T>[src]

Auto Trait Implementations

impl<T> Unpin for Hogwild<T>

impl<T> !UnwindSafe for Hogwild<T>

impl<T> !RefUnwindSafe for Hogwild<T>

Blanket Implementations

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

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> 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]