Compare commits

..

1 commit

Author SHA1 Message Date
6508fe03e2 changes 2021-12-26 20:30:30 -05:00

View file

@ -11,7 +11,7 @@ trait Pattern<'a> {
fn parse(args: Vec<String>) -> Result<Self, ParseError>;
}
impl TryFrom<Vec<String>> for Box<dyn Pattern> {
impl<'a> TryFrom<Vec<String>> for Box<dyn Pattern<'a>> {
fn try_from(s: Vec<String>) -> Result<Self, ParseError> {
match s[0].as_str() {
"unit" => Unit::parse(s),
@ -22,7 +22,7 @@ impl TryFrom<Vec<String>> for Box<dyn Pattern> {
}
struct Unit;
impl<'a> Pattern for Unit<'a> {
impl<'a> Pattern<'a> for Unit {
fn execute(&self, values: &'a mut [RawColor]) {}
fn parse(args: Vec<String>) -> Result<Self, ParseError> {
Ok(Unit {})
@ -35,7 +35,7 @@ struct Value {
b: Option<u8>
}
impl<'a> Pattern for Value<'a> {
impl<'a> Pattern<'a> for Value {
fn execute(&self, values: &'a mut [RawColor]) {
for i in 0..crate::LED_SIZE {
let color: RawColor = values[i];
@ -93,7 +93,7 @@ impl<'a> Pattern for Value<'a> {
}
}
pub fn parse_line(v: Vec<String>) -> Result<Box<dyn Pattern>, ParseError> {
pub fn parse_line(v: Vec<String>) -> Result<Box<dyn Pattern<'static>>, ParseError> {
let res: Result<Box<dyn Pattern>, ParseError> = v.try_into();
res
}