mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-26 04:12:34 +00:00
continue removing todo!()s
This commit is contained in:
@@ -66,7 +66,7 @@ impl Version {
|
||||
return Err(Exceptions::ILLEGAL_STATE);
|
||||
}
|
||||
|
||||
pub fn isMicroQRCode(&self) -> bool {
|
||||
pub const fn isMicroQRCode(&self) -> bool {
|
||||
self.is_micro
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,12 +47,14 @@ where
|
||||
Self::default()
|
||||
}
|
||||
pub fn with_eci_string_builder(src: ECIStringBuilder) -> Self {
|
||||
todo!()
|
||||
let mut new_self = Self::default();
|
||||
new_self.content = src;
|
||||
new_self
|
||||
}
|
||||
|
||||
pub fn isValid(&self) -> bool {
|
||||
self.content.symbology.code != 0
|
||||
//return includeErrors || (_content.symbology.code != 0 && !_error);
|
||||
todo!()
|
||||
}
|
||||
|
||||
pub fn content(&self) -> &ECIStringBuilder {
|
||||
|
||||
Reference in New Issue
Block a user