[][src]Struct active_tx::PacketBuilder

pub struct PacketBuilder { /* fields omitted */ }

Provides build methods

Methods

impl PacketBuilder[src]

pub fn new(data: PacketValue) -> PacketBuilder[src]

New

Generate a new builder and pass it an PacketValue for consumption.

pub fn new_json(data: Value) -> PacketBuilder[src]

New JSON

Takes serde_json Value type data and creates a new PacketBuilder.

pub fn build(&mut self) -> TxBuilderResult<PacketData>[src]

Build

Process the given data and store it in an PacketData object, return the PacketData object

pub fn from_string(data: &str) -> PacketValue[src]

From string

Consumes a string reference and converts it into a PacketValue

Trait Implementations

impl Clone for PacketBuilder[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

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