Struct Dot

Source
pub struct Dot<'a> { /* private fields */ }

Implementations§

Source§

impl<'a> Dot<'a>

Source

pub fn new( addr_ip: IpAddr, port_number: u16, data_point: &[u8], plugin_dir: Option<&'a str>, ) -> Dot<'a>

Source

pub fn drop_plugins(&mut self) -> Result<i32, &'static str>

Source

pub fn get_datapoint(&self) -> Vec<u8>

Source

pub fn health(&mut self) -> Result<i32, &'static str>

Source

pub fn process_command( &mut self, message: &[u8], ) -> Result<Box<dyn Any>, &'static str>

This function maps the end user’s command (.e.g; SELF::ATTR::name) to the plugin that owns to the processing of the command.

Source

pub fn start_listener(&mut self) -> Result<i32, &'static str>

Source

pub fn stop_listener(&mut self) -> Result<i32, &'static str>

Source

pub fn speak(&mut self, message: &[u8]) -> Result<i32, &'static str>

Auto Trait Implementations§

§

impl<'a> Freeze for Dot<'a>

§

impl<'a> !RefUnwindSafe for Dot<'a>

§

impl<'a> Send for Dot<'a>

§

impl<'a> !Sync for Dot<'a>

§

impl<'a> Unpin for Dot<'a>

§

impl<'a> !UnwindSafe for Dot<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.