pub enum LightRequest {
Show 16 variants GetNumLights { responder: LightGetNumLightsResponder, }, GetNumLightGroups { responder: LightGetNumLightGroupsResponder, }, GetInfo { index: u32, responder: LightGetInfoResponder, }, GetCurrentSimpleValue { index: u32, responder: LightGetCurrentSimpleValueResponder, }, SetSimpleValue { index: u32, value: bool, responder: LightSetSimpleValueResponder, }, GetCurrentBrightnessValue { index: u32, responder: LightGetCurrentBrightnessValueResponder, }, SetBrightnessValue { index: u32, value: f64, responder: LightSetBrightnessValueResponder, }, GetCurrentRgbValue { index: u32, responder: LightGetCurrentRgbValueResponder, }, SetRgbValue { index: u32, value: Rgb, responder: LightSetRgbValueResponder, }, GetGroupInfo { group_id: u32, responder: LightGetGroupInfoResponder, }, GetGroupCurrentSimpleValue { group_id: u32, responder: LightGetGroupCurrentSimpleValueResponder, }, SetGroupSimpleValue { group_id: u32, values: Vec<bool>, responder: LightSetGroupSimpleValueResponder, }, GetGroupCurrentBrightnessValue { group_id: u32, responder: LightGetGroupCurrentBrightnessValueResponder, }, SetGroupBrightnessValue { group_id: u32, values: Vec<f64>, responder: LightSetGroupBrightnessValueResponder, }, GetGroupCurrentRgbValue { group_id: u32, responder: LightGetGroupCurrentRgbValueResponder, }, SetGroupRgbValue { group_id: u32, values: Vec<Rgb>, responder: LightSetGroupRgbValueResponder, },
}

Variants§

§

GetNumLights

Returns the total number of physical lights. This will typically be 1 for a simple LED light, but may be greater than one for an array of lights or a more complicated lighting device. The multiple lights are addressed using “index” parameter in the calls below.

§

GetNumLightGroups

Returns the total number of light groups (does not count single lights). The light groups are addressed using “group_id” parameter in the calls below.

§

GetInfo

Returns info for the single light. index: Index of the light defined by board. Must be less than value returned by GetNumLights.

Fields

§index: u32
§

GetCurrentSimpleValue

Returns the current value. If the light is ON, the value is True. If the light is OFF, the value is False. If the capability ‘SIMPLE’ is not supported by this light, returns NOT_SUPPORTED. Use GetInfo to check if light supports this operation. index: a number between 0 inclusive and the count received from GetNumLights.

§

SetSimpleValue

Sets the current value. Value should be set to ‘TRUE’ to turn on the light. Value should be set to ‘FALSE’ to turn off the light. If the capability ‘SIMPLE’ is not supported by this light, returns NOT_SUPPORTED. Use GetInfo to check if light supports this operation. index: a number between 0 inclusive and the count received from GetNumLights.

Fields

§index: u32
§value: bool
§

GetCurrentBrightnessValue

Returns the current brightness value (0.0 - 1.0) of the light indicated by index, where 0.0 is minimum brightness and 1.0 is maximum. If the capability ‘BRIGHTNESS’ is not supported by this light, returns NOT_SUPPORTED. Use GetInfo to check if light supports this operation. index: a number between 0 inclusive and the count received from GetNumLights.

§

SetBrightnessValue

Sets the current brightness value (0.0 - 1.0), where 0.0 is minimum brightness and 1.0 is maximum. If the capability ‘BRIGHTNESS’ is not supported by this light, returns NOT_SUPPORTED. Use GetInfo to check if light supports this operation. index: a number between 0 inclusive and the count received from GetNumLights.

Fields

§index: u32
§value: f64
§

GetCurrentRgbValue

Returns the current RGB value for the single light. If the capability ‘RGB’ is not supported by this light, returns NOT_SUPPORTED. Use GetInfo to check if light supports this operation. index: a number between 0 inclusive and the count received from GetNumLights.

§

SetRgbValue

Sets the current RGB value. If the capability ‘RGB’ is not supported by this light, returns NOT_SUPPORTED. Use GetInfo to check if light supports this operation. index: a number between 0 inclusive and the count received from GetNumLights.

Fields

§index: u32
§value: Rgb
§

GetGroupInfo

Returns group info for the light group. group_id: a number between 0 inclusive and the count received from GetNumLightGroups.

Fields

§group_id: u32
§

GetGroupCurrentSimpleValue

Returns an array of the current values.If the light is ON, the value is True. If the light is OFF, the value is False. If group_id is invalid, INVALID_INDEX will be returned. If the capability ‘SIMPLE’ is not supported by this group, returns NOT_SUPPORTED. Use GetGroupInfo to check if group supports this operation. group_id: a number between 0 inclusive and the count received from GetNumLightGroups.

§

SetGroupSimpleValue

Sets the current values through the values array. Value should be set to ‘TRUE’ to turn on the light. Value should be set to ‘FALSE’ to turn off the light. If group_id is invalid, INVALID_INDEX will be returned. If the capability ‘SIMPLE’ is not supported by this group, returns NOT_SUPPORTED. Use GetGroupInfo to check if group supports this operation. group_id: a number between 0 inclusive and the count received from GetNumLightGroups.

Fields

§group_id: u32
§values: Vec<bool>
§

GetGroupCurrentBrightnessValue

Returns an array of the current brightness values (0.0 - 1.0) for the light group, where 0.0 is minimum brightness and 1.0 is maximum. If group_id is invalid, INVALID_INDEX will be returned. If the capability ‘BRIGHTNESS’ is not supported by this group, returns NOT_SUPPORTED. Use GetGroupInfo to check if group supports this operation. group_id: a number between 0 inclusive and the count received from GetNumLightGroups.

§

SetGroupBrightnessValue

Sets the current brightness values (0.0 - 1.0) for the light group through the values array, where 0.0 is minimum brightness and 1.0 is maximum. If group_id is invalid, INVALID_INDEX will be returned. If the capability ‘BRIGHTNESS’ is not supported by this group, returns NOT_SUPPORTED. Use GetGroupInfo to check if group supports this operation. group_id: a number between 0 inclusive and the count received from GetNumLightGroups.

Fields

§group_id: u32
§values: Vec<f64>
§

GetGroupCurrentRgbValue

Returns an array of the current RGB values for the light group. If group_id is invalid, INVALID_INDEX will be returned. If the capability ‘RGB’ is not supported by this group, returns NOT_SUPPORTED. Use GetGroupInfo to check if group supports this operation. group_id: a number between 0 inclusive and the count received from GetNumLightGroups.

§

SetGroupRgbValue

Sets the current RGB value for the light group. If group_id is invalid, INVALID_INDEX will be returned. If the capability ‘RGB’ is not supported by this group, returns NOT_SUPPORTED. Use GetGroupInfo to check if group supports this operation. group_id: a number between 0 inclusive and the count received from GetNumLightGroups.

Fields

§group_id: u32
§values: Vec<Rgb>

Implementations§

source§

impl LightRequest

source

pub fn into_get_num_lights(self) -> Option<LightGetNumLightsResponder>

source

pub fn into_get_num_light_groups( self ) -> Option<LightGetNumLightGroupsResponder>

source

pub fn into_get_info(self) -> Option<(u32, LightGetInfoResponder)>

source

pub fn into_get_current_simple_value( self ) -> Option<(u32, LightGetCurrentSimpleValueResponder)>

source

pub fn into_set_simple_value( self ) -> Option<(u32, bool, LightSetSimpleValueResponder)>

source

pub fn into_get_current_brightness_value( self ) -> Option<(u32, LightGetCurrentBrightnessValueResponder)>

source

pub fn into_set_brightness_value( self ) -> Option<(u32, f64, LightSetBrightnessValueResponder)>

source

pub fn into_get_current_rgb_value( self ) -> Option<(u32, LightGetCurrentRgbValueResponder)>

source

pub fn into_set_rgb_value(self) -> Option<(u32, Rgb, LightSetRgbValueResponder)>

source

pub fn into_get_group_info(self) -> Option<(u32, LightGetGroupInfoResponder)>

source

pub fn into_get_group_current_simple_value( self ) -> Option<(u32, LightGetGroupCurrentSimpleValueResponder)>

source

pub fn into_set_group_simple_value( self ) -> Option<(u32, Vec<bool>, LightSetGroupSimpleValueResponder)>

source

pub fn into_get_group_current_brightness_value( self ) -> Option<(u32, LightGetGroupCurrentBrightnessValueResponder)>

source

pub fn into_set_group_brightness_value( self ) -> Option<(u32, Vec<f64>, LightSetGroupBrightnessValueResponder)>

source

pub fn into_get_group_current_rgb_value( self ) -> Option<(u32, LightGetGroupCurrentRgbValueResponder)>

source

pub fn into_set_group_rgb_value( self ) -> Option<(u32, Vec<Rgb>, LightSetGroupRgbValueResponder)>

source

pub fn method_name(&self) -> &'static str

Name of the method defined in FIDL

Trait Implementations§

source§

impl Debug for LightRequest

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Encode<Ambiguous1> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
§

impl<T> Encode<Ambiguous2> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more