pub struct Enclosure {
pub url: String,
pub length: String,
pub mime_type: String,
}
Expand description
A representation of the <enclosure>
element.
Fields§
§url: String
The URL of the enclosure.
length: String
The length of the enclosure in bytes.
mime_type: String
The MIME type of the enclosure.
Trait Implementations§
impl StructuralPartialEq for Enclosure
Auto Trait Implementations§
impl Freeze for Enclosure
impl RefUnwindSafe for Enclosure
impl Send for Enclosure
impl Sync for Enclosure
impl Unpin for Enclosure
impl UnwindSafe for Enclosure
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