[][src]Struct arc_swap::access::Map

pub struct Map<A, T, F> { /* fields omitted */ }

An adaptor to provide access to a part of larger structure.

This is the active part of this module. Use the module documentation for the details.

Implementations

impl<A, T, F> Map<A, T, F>[src]

pub fn new<R>(access: A, projection: F) -> Self where
    F: Fn(&T) -> &R + Clone
[src]

Creates a new instance.

Parameters

  • access: Access to the bigger structure. This is usually something like Arc<ArcSwap> or &ArcSwap. It is technically possible to use any other Access here, though, for example to sub-delegate into even smaller structure from a Map (or generic Access).
  • projection: A function (or closure) responsible to providing a reference into the bigger bigger structure, selecting just subset of it. In general, it is expected to be cheap (like only taking reference).

Trait Implementations

impl<A, F, T, R> Access<R> for Map<A, T, F> where
    A: Access<T>,
    F: Fn(&T) -> &R + Clone
[src]

type Guard = MapGuard<A::Guard, F, T, R>

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

impl<A: Clone, T: Clone, F: Clone> Clone for Map<A, T, F>[src]

impl<A: Copy, T: Copy, F: Copy> Copy for Map<A, T, F>[src]

impl<A: Debug, T: Debug, F: Debug> Debug for Map<A, T, F>[src]

Auto Trait Implementations

impl<A, T, F> RefUnwindSafe for Map<A, T, F> where
    A: RefUnwindSafe,
    F: RefUnwindSafe
[src]

impl<A, T, F> Send for Map<A, T, F> where
    A: Send,
    F: Send
[src]

impl<A, T, F> Sync for Map<A, T, F> where
    A: Sync,
    F: Sync
[src]

impl<A, T, F> Unpin for Map<A, T, F> where
    A: Unpin,
    F: Unpin
[src]

impl<A, T, F> UnwindSafe for Map<A, T, F> where
    A: UnwindSafe,
    F: UnwindSafe
[src]

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, A> DynAccess<T> for A where
    A: Access<T>,
    <A as Access<T>>::Guard: 'static, 
[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.