Compare commits

..

1 commit

Author SHA1 Message Date
b9b1332814 now i am just writing things 2021-12-27 19:12:56 -05:00
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ fn main() {
let pattern = format_multiline("val 255 150 0"); let pattern = format_multiline("val 255 150 0");
pattern.iter() pattern.iter()
.map(|x: &Vec<String>| parse_line((*x).clone())) .map(|x: &Vec<String>| parse_line((*x).clone()))
.for_each(|res: Result<Box<dyn Pattern>, ParseError>| { .for_each(|res| {
if res.is_ok() { if res.is_ok() {
res.unwrap().execute(&mut lights); res.unwrap().execute(&mut lights);
} }

View file

@ -5,7 +5,7 @@ use std::{
}; };
use std::sync::RwLockWriteGuard; use std::sync::RwLockWriteGuard;
pub type ParseError = Box<dyn std::error::Error>; type ParseError = Box<dyn std::error::Error>;
pub trait Pattern<'a> { pub trait Pattern<'a> {
fn execute(&self, values: &'a mut RwLockWriteGuard<'_, [RawColor; crate::LED_SIZE]>); fn execute(&self, values: &'a mut RwLockWriteGuard<'_, [RawColor; crate::LED_SIZE]>);