[][src]Struct arsdk_rs::Drone

pub struct Drone { /* fields omitted */ }

Implementations

impl Drone[src]

pub fn connect(config: Config) -> AnyResult<Self>[src]

Connects to a drone

  • Spawns Listener at LISTENER_PORT
  • Perfroms Handshake at INIT_PORT
  • Spawns Command sender at c2d_port

pub fn send_frame(&self, frame: Frame) -> AnyResult<()>[src]

pub fn send_raw_message(&self, raw_message: &[u8]) -> AnyResult<()>[src]

pub fn send_datetime(&self, date: DateTime<Utc>) -> AnyResult<()>[src]

Trait Implementations

impl Clone for Drone[src]

impl Debug for Drone[src]

Auto Trait Implementations

impl !RefUnwindSafe for Drone

impl Send for Drone

impl Sync for Drone

impl Unpin for Drone

impl !UnwindSafe for Drone

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