From 308a99a44b2f38d528f7b853db90f45ba1f93e0f Mon Sep 17 00:00:00 2001 From: git-user-cpp Date: Fri, 26 May 2023 13:54:05 +0300 Subject: [PATCH] comments were replaced by todo!() macro --- src/main_module/data/data_handler.rs | 4 ++-- src/main_module/data/table.rs | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/main_module/data/data_handler.rs b/src/main_module/data/data_handler.rs index b4a7eaf..e3998e6 100644 --- a/src/main_module/data/data_handler.rs +++ b/src/main_module/data/data_handler.rs @@ -37,10 +37,10 @@ impl DataHandler { } pub fn create_new_table() { - //TODO: implement + todo!() } pub fn insert_into_table() { - //TODO: implement + todo!() } } diff --git a/src/main_module/data/table.rs b/src/main_module/data/table.rs index 7ea9540..ba3c951 100644 --- a/src/main_module/data/table.rs +++ b/src/main_module/data/table.rs @@ -46,54 +46,54 @@ impl Table { //TODO: implement all these functions fn generate_unique_id() { - //TODO: implement + todo!() } fn verify_id() { - //TODO: implement + todo!() } fn verify_field() { - //TODO: implement + todo!() } fn verify_rows() { - //TODO: implement + todo!() } fn verify_column_names_correct() { - //TODO: implement + todo!() } fn verify_id_and_field() { - //TODO: implement + todo!() } fn verify_id_and_columns() { - //TODO: implement + todo!() } pub fn row_is_empty() { - //TODO: implement + todo!() } pub fn get_field_value() { - //TODO: implement + todo!() } pub fn add_row() { - //TODO: implement + todo!() } pub fn return_row() { - //TODO: implement + todo!() } pub fn remove_row() { - //TODO: implement + todo!() } pub fn update_row_field_values() { - //TODO: implement + todo!() } }