[][src]Struct actix_ogn::OGNActor

pub struct OGNActor { /* fields omitted */ }

An actor that connects to the OGN APRS servers

Implementations

impl OGNActor[src]

pub fn new(recipient: Recipient<OGNMessage>) -> OGNActor[src]

Trait Implementations

impl Actor for OGNActor[src]

type Context = Context<Self>

Actor execution context type

impl StreamHandler<Result<String, LinesCodecError>> for OGNActor[src]

Send received lines to the recipient

impl Supervised for OGNActor[src]

impl WriteHandler<LinesCodecError> for OGNActor[src]

Auto Trait Implementations

impl !RefUnwindSafe for OGNActor

impl !Send for OGNActor

impl !Sync for OGNActor

impl Unpin for OGNActor

impl !UnwindSafe for OGNActor

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> From<T> for T[src]

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

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