pub enum Line {
Version(Version),
Summary(Summary),
Record(Record),
}
Expand description
Represents either a Version, Summary or Record line.
Variants§
Version(Version)
Represents a version line in an RSEF listing.
Summary(Summary)
Represents a summary line in an RSEF listing. States statistics on an Internet Resource.
Record(Record)
Represents an individual record on a specific Internet Resource.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Line
impl RefUnwindSafe for Line
impl Send for Line
impl Sync for Line
impl Unpin for Line
impl UnwindSafe for Line
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