diff --git a/src/lib.rs b/src/lib.rs index a172b95..b616cfc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -184,7 +184,7 @@ impl QrCode { /// Converts the QR code to a vector of booleans. Each entry represents the /// color of the module, with "true" means dark and "false" means light. pub fn into_vec(self) -> Vec { - self.content.clone() + self.content } }