#[repr(C)]pub struct RGBLedMatrixOptions {Show 19 fields
pub hardware_mapping: *const c_char,
pub rows: c_int,
pub cols: c_int,
pub chain_length: c_int,
pub parallel: c_int,
pub pwm_bits: c_int,
pub pwm_lsb_nanoseconds: c_int,
pub pwm_dither_bits: c_int,
pub brightness: c_int,
pub scan_mode: c_int,
pub row_address_type: c_int,
pub multiplexing: c_int,
pub led_rgb_sequence: *const c_char,
pub pixel_mapper_config: *const c_char,
pub panel_type: *const c_char,
pub disable_hardware_pulsing: c_char,
pub show_refresh_rate: c_char,
pub inverse_colors: c_char,
pub limit_refresh_rate_hz: c_int,
}Expand description
Parameters to create a new matrix.
To get the defaults, non-set values have to be initialized to zero, so you should zero out this struct before setting anything.
Fields§
§hardware_mapping: *const c_char§rows: c_int§cols: c_int§chain_length: c_int§parallel: c_int§pwm_bits: c_int§pwm_lsb_nanoseconds: c_int§pwm_dither_bits: c_int§brightness: c_int§scan_mode: c_int§row_address_type: c_int§multiplexing: c_int§led_rgb_sequence: *const c_char§pixel_mapper_config: *const c_char§panel_type: *const c_char§disable_hardware_pulsing: c_charThe following are boolean flags, all off by default
show_refresh_rate: c_char§inverse_colors: c_char§limit_refresh_rate_hz: c_intImplementations§
Source§impl RGBLedMatrixOptions
impl RGBLedMatrixOptions
pub fn new() -> Self
pub fn hardware_mapping(self, mapping: &str) -> Self
pub fn rows(self, rows: u16) -> Self
pub fn cols(self, cols: u16) -> Self
pub fn chain_length(self, length: u16) -> Self
pub fn parallel(self, parallel: u16) -> Self
pub fn pwm_bits(self, bits: u16) -> Self
pub fn pwm_lsb_nanoseconds(self, ns: u16) -> Self
pub fn pwm_dither_bits(self, bits: u16) -> Self
pub fn brightness(self, brightness: u16) -> Self
pub fn scan_mode(self, mode: u16) -> Self
pub fn row_address_type(self, address_type: u16) -> Self
pub fn multiplexing(self, multiplexing: u16) -> Self
pub fn disable_hardware_pulsing(self, disable: bool) -> Self
pub fn show_refresh_rate(self, show: bool) -> Self
pub fn inverse_colors(self, inverse: bool) -> Self
pub fn led_rgb_sequence(self, sequence: &str) -> Self
pub fn pixel_mapper_config(self, config: &str) -> Self
pub fn panel_type(self, panel_type: &str) -> Self
pub fn limit_refresh_rate_hz(self, hz: u32) -> Self
pub fn build(self) -> Box<RGBLedMatrix>
pub fn build_with_rt_options( self, rt_options: RGBLedRuntimeOptions, ) -> Box<RGBLedMatrix>
Trait Implementations§
Source§impl Clone for RGBLedMatrixOptions
impl Clone for RGBLedMatrixOptions
Source§fn clone(&self) -> RGBLedMatrixOptions
fn clone(&self) -> RGBLedMatrixOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RGBLedMatrixOptions
Source§impl Debug for RGBLedMatrixOptions
impl Debug for RGBLedMatrixOptions
Auto Trait Implementations§
impl !Send for RGBLedMatrixOptions
impl !Sync for RGBLedMatrixOptions
impl Freeze for RGBLedMatrixOptions
impl RefUnwindSafe for RGBLedMatrixOptions
impl Unpin for RGBLedMatrixOptions
impl UnsafeUnpin for RGBLedMatrixOptions
impl UnwindSafe for RGBLedMatrixOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more