[][src]Struct tokio_ddmw::clntif::Params

pub struct Params { /* fields omitted */ }

Key/value parameters storage.

Implementations

impl Params[src]

pub fn new() -> Params[src]

Create a new empty parameters object.

pub fn clear(&mut self)[src]

Reset all the key/values.

pub fn get_inner(&self) -> &HashMap<String, String, RandomState>[src]

pub fn add_param<T, U>(&mut self, key: T, value: U) where
    T: ToString,
    U: ToString
[src]

Add a parameter to the parameter.

pub fn add_str<T, U>(&mut self, key: T, value: U) where
    T: ToString,
    U: ToString
[src]

Add a string parameter to the parameter.

pub fn get_param<T>(&self, key: &str) -> Result<T, Error> where
    T: FromStr
[src]

Get a parameter and convert it to a requested type.

pub fn get_str(&self, key: &str) -> Option<&str>[src]

Get string representation of a value for a requested key. Returns None if the key is not found in the inner storage. Returns Some(&str) otherwise.

pub fn get_int<T>(&self, key: &str) -> Result<T, Error> where
    T: FromStr
[src]

Get a parameter and convert it to an integer type. The logic of this method is identical to get_param().

use blather::Params;
fn main() {
  let mut params = Params::new();
  params.add_param("Num", 7);
  assert_eq!(params.get_int::<usize>("Num").unwrap(), 7);
}

This method should really have some integer trait bound, but it doesn't seem to exist in the standard library.

This method exists primarily to achive some sort of parity with a corresponding C++ library.

pub fn calc_buf_size(&self) -> usize[src]

Calculate the size of the buffer in serialized form. Each entry will be a newline terminated utf-8 line. Last line will be a single newline character.

pub fn serialize(&self) -> Result<Vec<u8>, Error>[src]

pub fn encoder_write(&self, buf: &mut BytesMut) -> Result<(), Error>[src]

Write the Params to a buffer.

pub fn into_inner(self) -> HashMap<String, String, RandomState>[src]

Consume the Params buffer and return the internal parameters HashMap.

Trait Implementations

impl Clone for Params[src]

impl Debug for Params[src]

impl Default for Params[src]

impl Display for Params[src]

impl<'_> Encoder<&'_ Params> for Codec[src]

type Error = Error

The type of encoding errors. Read more

impl From<HashMap<String, String, RandomState>> for Params[src]

impl From<Params> for Telegram[src]

Auto Trait Implementations

impl RefUnwindSafe for Params

impl Send for Params

impl Sync for Params

impl Unpin for Params

impl UnwindSafe for Params

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> ToString for T where
    T: Display + ?Sized
[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.