Struct elfo_core::Local[][src]

pub struct Local<T>(_);

Messages must be instances of Serialize and Deserialize because of network communication and message dumping. However, in some cases, it’s desired to have messages that cannot be serialized. For instance, when sharding TCP sockets.

Local<T> implements Serialize and Deserialize for any T. Meanwhile, it can be serialized (but w/o useful information), it cannot be deserialized (it returns an error on attempts).

Implementations

impl<T> Local<T>[src]

pub fn into_inner(self) -> T[src]

Trait Implementations

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

impl<T: Copy> Copy for Local<T>[src]

impl<T> Debug for Local<T>[src]

impl<T: Default> Default for Local<T>[src]

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

type Target = T

The resulting type after dereferencing.

impl<'de, T> Deserialize<'de> for Local<T>[src]

impl<T: Eq> Eq for Local<T>[src]

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

impl<T: PartialEq> PartialEq<Local<T>> for Local<T>[src]

impl<T> Serialize for Local<T>[src]

impl<T> StructuralEq for Local<T>[src]

impl<T> StructuralPartialEq for Local<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Local<T> where
    T: RefUnwindSafe

impl<T> Send for Local<T> where
    T: Send

impl<T> Sync for Local<T> where
    T: Sync

impl<T> Unpin for Local<T> where
    T: Unpin

impl<T> UnwindSafe for Local<T> where
    T: UnwindSafe

Blanket Implementations

impl<T, A, P> Access<T> for P where
    P: Deref<Target = A>,
    A: Access<T>, 
[src]

type Guard = <A as Access<T>>::Guard

A guard object containing the value and keeping it alive. Read more

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<C> Config for C where
    C: for<'de> Deserialize<'de> + Send + Sync + Debug + 'static, 
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T, A> DynAccess<T> for A where
    A: Access<T>,
    <A as Access<T>>::Guard: 'static, 
[src]

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

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

impl<T> Instrument 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.