[][src]Struct ufo_rs::DroneUdpConnection

pub struct DroneUdpConnection { /* fields omitted */ }

Connection of a drone

Methods

impl DroneUdpConnection[src]

pub fn new(
    bind_ip: String,
    bind_port: String,
    connect_ip: String,
    connect_port: String
) -> Self
[src]

Create a new drone connection takes in bind_ip, bind_port, connect_ip, and connect_port all as Strings

pub fn connect(&mut self) -> Result<(), Box<dyn Error>>[src]

Connect DroneConnection to drone

pub fn send_command(&mut self, hex_str: String) -> Result<(), Box<dyn Error>>[src]

Send a static command to the drone

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]