usecrate::blog::{Blog, Post};usesuper::ParserError;/// Represents a web feed that can be converted to a `blog.Blog`.
pubtraitWebFeed{fninto_blog(self)->Result<Blog, ParserError>;}/// Represents an object that can be converted to a `blog.Post`.
pubtraitBlogPost{fninto_post(self)->Result<Post, ParserError>;}