[][src]Struct cjdns_admin::ArgValues

pub struct ArgValues(_);

Remote function argument values.

Implementations

impl ArgValues[src]

pub fn new() -> Self[src]

New empty instance.

pub fn add<N: Into<ArgName>, V: Into<ArgValue>>(
    &mut self,
    name: N,
    value: V
) -> &mut Self
[src]

Add argument value to list.

Trait Implementations

impl Clone for ArgValues[src]

impl Debug for ArgValues[src]

impl Default for ArgValues[src]

impl Eq for ArgValues[src]

impl PartialEq<ArgValues> for ArgValues[src]

impl Serialize for ArgValues[src]

impl StructuralEq for ArgValues[src]

impl StructuralPartialEq for ArgValues[src]

Auto Trait Implementations

impl RefUnwindSafe for ArgValues

impl Send for ArgValues

impl Sync for ArgValues

impl Unpin for ArgValues

impl UnwindSafe for ArgValues

Blanket Implementations

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

impl<T> Args for T where
    T: Serialize
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,