pub struct Item {
pub title: String,
pub year: u16,
pub href: String,
pub img: String,
pub quality: String,
pub rating: f32,
pub genres: Vec<String>,
}Fields§
§title: String§year: u16§href: String§img: String§quality: String§rating: f32§genres: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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