[][src]Struct vapix::v3::parameters::ParameterGroupDefinition

pub struct ParameterGroupDefinition {
    pub name: String,
    pub max_groups: Option<u32>,
    pub groups: Vec<ParameterGroupDefinition>,
    pub parameters: Vec<ParameterDefinition>,
}

A group of parameter definitions.

May contain parameters or additional groups.

Fields

name: String

The name of the parameter group.

max_groups: Option<u32>

Purpose unknown.

groups: Vec<ParameterGroupDefinition>

The parameter groups nested within this parameter group.

parameters: Vec<ParameterDefinition>

The parameters nested within this parameter group.

Implementations

impl ParameterGroupDefinition[src]

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

Find a nested parameter group by name.

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

Find a nested parameter by name.

Trait Implementations

impl Debug for ParameterGroupDefinition[src]

impl<'de> Deserialize<'de> for ParameterGroupDefinition[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,