We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53f78b9 commit 9b57a91Copy full SHA for 9b57a91
src/opml.rs
@@ -93,11 +93,6 @@ impl From<ImportedFeed> for Feed {
93
94
type ImportResult = Result<Vec<(Option<String>, Vec<ImportedFeed>)>>;
95
96
-pub fn from_str(input: &str) -> ImportResult {
97
- let reader = Reader::from_str(input);
98
- from_reader(reader)
99
-}
100
-
101
pub fn from_file(path: &Path) -> ImportResult {
102
let reader = Reader::from_file(&path)?;
103
from_reader(reader)
0 commit comments