[rust] add putln method to NcPlane.

- fix compilation error using older rust version.
- update docs.
This commit is contained in:
joseLuís 2021-07-09 20:37:53 +02:00
parent 115b06c386
commit 873a75f77f

View File

@ -347,9 +347,9 @@ impl NcStyleMethods for NcStyle {
NCSTYLE_BLINK,
NCSTYLE_NONE,
];
for s in styles {
if self.has(s) {
v.push(s)
for s in &styles {
if self.has(*s) {
v.push(*s)
}
}
v