[][src]Struct cjdns_admin::Funcs

pub struct Funcs(_);

List of available remote functions.

Implementations

impl Funcs[src]

pub fn iter(&self) -> impl Iterator<Item = &Func>[src]

Iterator over functions in this list returned in alphabetical order.

pub fn find(&self, name: &str) -> Option<&Func>[src]

Find function by name.

Trait Implementations

impl Clone for Funcs[src]

impl Debug for Funcs[src]

impl Default for Funcs[src]

impl Display for Funcs[src]

impl Eq for Funcs[src]

impl PartialEq<Funcs> for Funcs[src]

impl StructuralEq for Funcs[src]

impl StructuralPartialEq for Funcs[src]

Auto Trait Implementations

impl RefUnwindSafe for Funcs

impl Send for Funcs

impl Sync for Funcs

impl Unpin for Funcs

impl UnwindSafe for Funcs

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.

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