continue removing todo!()s

This commit is contained in:
Henry Schimke
2023-03-28 16:31:41 -05:00
parent 607bb28101
commit 74a459f65a
5 changed files with 76 additions and 25 deletions

View File

@@ -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 {