[][src]Struct pubnub_core::data::request::GlobalHereNow

pub struct GlobalHereNow<TRespondWith> where
    TRespondWith: RespondWith
{ pub respond_with: PhantomData<TRespondWith>, }

Retrieve UUID and State Information for subscribed devices on a all channels.

Fields

respond_with: PhantomData<TRespondWith>

Type that specializes the response type.

Trait Implementations

impl<TRespondWith: Clone> Clone for GlobalHereNow<TRespondWith> where
    TRespondWith: RespondWith
[src]

impl<TRespondWith: Debug> Debug for GlobalHereNow<TRespondWith> where
    TRespondWith: RespondWith
[src]

impl<TRespondWith: Eq> Eq for GlobalHereNow<TRespondWith> where
    TRespondWith: RespondWith
[src]

impl<TRespondWith: PartialEq> PartialEq<GlobalHereNow<TRespondWith>> for GlobalHereNow<TRespondWith> where
    TRespondWith: RespondWith
[src]

impl Service<GlobalHereNow<Full>> for MockTransport[src]

type Response = GlobalHereNow<Full>

Response given by the service.

type Error = MockTransportError

Error produced by the service.

impl Service<GlobalHereNow<OccupancyAndUUIDs>> for MockTransport[src]

type Response = GlobalHereNow<OccupancyAndUUIDs>

Response given by the service.

type Error = MockTransportError

Error produced by the service.

impl Service<GlobalHereNow<OccupancyOnly>> for MockTransport[src]

type Response = GlobalHereNow<OccupancyOnly>

Response given by the service.

type Error = MockTransportError

Error produced by the service.

impl<TRespondWith> StructuralEq for GlobalHereNow<TRespondWith> where
    TRespondWith: RespondWith
[src]

impl<TRespondWith> StructuralPartialEq for GlobalHereNow<TRespondWith> where
    TRespondWith: RespondWith
[src]

Auto Trait Implementations

impl<TRespondWith> RefUnwindSafe for GlobalHereNow<TRespondWith> where
    TRespondWith: RefUnwindSafe

impl<TRespondWith> Send for GlobalHereNow<TRespondWith> where
    TRespondWith: Send

impl<TRespondWith> Sync for GlobalHereNow<TRespondWith> where
    TRespondWith: Sync

impl<TRespondWith> Unpin for GlobalHereNow<TRespondWith> where
    TRespondWith: Unpin

impl<TRespondWith> UnwindSafe for GlobalHereNow<TRespondWith> where
    TRespondWith: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any + ?Sized

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,