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

pub struct ParameterTypeDefinition {
    pub read_only: Option<bool>,
    pub write_only: Option<bool>,
    pub hidden: Option<bool>,
    pub constant: Option<bool>,
    pub no_sync: Option<bool>,
    pub internal: Option<bool>,
    pub type_definition: TypeDefinition,
}

A parameter type definition, describing flags and type information.

Fields

read_only: Option<bool>

Is this parameter read-only?

write_only: Option<bool>

Is this parameter write-only?

hidden: Option<bool>

Should this parameter be displayed?

constant: Option<bool>

Is this parameter constant?

(FIXME: How does this differ from read_only?)

no_sync: Option<bool>

Purpose unknown.

internal: Option<bool>

Purpose unknown.

type_definition: TypeDefinition

The type definition of this parameter, describing its domain and encoding.

Trait Implementations

impl Debug for ParameterTypeDefinition[src]

impl<'de> Deserialize<'de> for ParameterTypeDefinition[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>,