pub struct Generator {
pub content: String,
pub uri: Option<String>,
pub version: Option<String>,
}
Expand description
Information on the tools used to generate the feed
Atom: Identifies the software used to generate the feed, for debugging and other purposes.
Fields§
§content: String
Atom: Additional data RSS 2: A string indicating the program used to generate the channel.
uri: Option<String>
Atom: Link to the tool
version: Option<String>
Atom: Tool version
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Generator
impl<'de> Deserialize<'de> for Generator
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Generator
impl StructuralPartialEq for Generator
Auto Trait Implementations§
impl Freeze for Generator
impl RefUnwindSafe for Generator
impl Send for Generator
impl Sync for Generator
impl Unpin for Generator
impl UnwindSafe for Generator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more