'records' method not found #267
-
I'm trying to use this crate and encountered a bit of a problem.
And my error message is as seen below:
My approach isn't so different from what is used in the cookbook tutorial so, I'm more inclined to think that the "records" method is deprecated especially because I've searched for it's source code(to no avail) so I can at least look at it's implementation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Sorry I have seen the error in my code, I should've provisioned for error handling after |
Beta Was this translation helpful? Give feedback.
Sorry I have seen the error in my code, I should've provisioned for error handling after
.from_path(file_name);
as so
.from_path(file_name)?;
Pardon my beginners blunder and silly bravado