[][src]Struct basws_yew::ApiAgent

pub struct ApiAgent<T> where
    T: ClientLogic + 'static, 
{ /* fields omitted */ }

Trait Implementations

impl<T> Agent for ApiAgent<T> where
    T: ClientLogic + 'static, 
[src]

type Reach = Context<Self>

Reach capability of the agent.

type Message = Message<T::Response>

Type of an input message.

type Input = AgentMessage<T::Request>

Incoming message type.

type Output = AgentResponse<T::Response>

Outgoing message type.

Auto Trait Implementations

impl<T> !RefUnwindSafe for ApiAgent<T>

impl<T> !Send for ApiAgent<T>

impl<T> !Sync for ApiAgent<T>

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

impl<T> !UnwindSafe for ApiAgent<T>

Blanket Implementations

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

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Bridged for T where
    T: Agent,
    <T as Agent>::Reach: Discoverer,
    <<T as Agent>::Reach as Discoverer>::Agent == T, 
[src]

impl<T> Dispatched for T where
    T: Agent,
    <T as Agent>::Reach: Discoverer,
    <T as Agent>::Reach: Dispatchable,
    <<T as Agent>::Reach as Discoverer>::Agent == T, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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