get-users: update

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-08-28 19:14:58 +02:00
parent d7d6425a0f
commit 777ca1380a

View File

@@ -16,7 +16,8 @@ fn main() {
let rows = vec_rows.iter();
println!("Matching roles (count: {})", rows.len());
for row in rows {
println!("{:?}: {:?}", row.id, row.last_name);
println!("{:?}: {:?} {:?} {:?} {:?}",
row.id, row.last_name, row.first_name, row.email, row.password_hash);
}
/*