CGI bin for generating a QR code
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lint

+7 -7
+7 -7
src/main.rs
··· 26 26 H, 27 27 } 28 28 29 - impl Into<EcLevel> for Ec { 30 - fn into(self) -> EcLevel { 31 - match self { 32 - Self::L => EcLevel::L, 33 - Self::M => EcLevel::M, 34 - Self::Q => EcLevel::Q, 35 - Self::H => EcLevel::H, 29 + impl From<Ec> for EcLevel { 30 + fn from(ec: Ec) -> EcLevel { 31 + match ec { 32 + Ec::L => EcLevel::L, 33 + Ec::M => EcLevel::M, 34 + Ec::Q => EcLevel::Q, 35 + Ec::H => EcLevel::H, 36 36 } 37 37 } 38 38 }