pub enum MovieAttribute {
Id,
Name,
RuntimeInMinutes,
BudgetInMillions,
BoxOfficeRevenueInMillions,
AcademyAwardNominations,
AcademyAwardWins,
RottenTomatoesScore,
}
Variants§
Id
Name
RuntimeInMinutes
BudgetInMillions
BoxOfficeRevenueInMillions
AcademyAwardNominations
AcademyAwardWins
RottenTomatoesScore
Trait Implementations§
Source§impl Clone for MovieAttribute
impl Clone for MovieAttribute
Source§fn clone(&self) -> MovieAttribute
fn clone(&self) -> MovieAttribute
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MovieAttribute
impl Debug for MovieAttribute
Source§impl GetUrl for MovieAttribute
impl GetUrl for MovieAttribute
Source§impl PartialEq for MovieAttribute
impl PartialEq for MovieAttribute
impl Copy for MovieAttribute
impl Eq for MovieAttribute
impl StructuralPartialEq for MovieAttribute
Auto Trait Implementations§
impl Freeze for MovieAttribute
impl RefUnwindSafe for MovieAttribute
impl Send for MovieAttribute
impl Sync for MovieAttribute
impl Unpin for MovieAttribute
impl UnwindSafe for MovieAttribute
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.