Trait cvar::INode
[−]
[src]
pub trait INode {
fn name(&self) -> &str;
fn description(&self) -> &str;
}Node interface.
Required Methods
fn name(&self) -> &str
Returns the node name.
fn description(&self) -> &str
Returns the node description.
Implementors
impl<N, D, T, V, F> INode for Property<N, D, T, V, F> where N: Borrow<str>, D: Borrow<str>, T: Value, V: Variable<T>, F: OnChange<T>impl<'a> INode for Node<'a>impl<'a, N, D> INode for List<'a, N, D> where N: Borrow<str>, D: Borrow<str>impl<N, D, F> INode for Action<N, D, F> where N: Borrow<str>, D: Borrow<str>, F: OnInvoke