#[non_exhaustive]pub enum VideoListParamsOrder {
Asc,
Desc,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for VideoListParamsOrder
impl Clone for VideoListParamsOrder
Source§fn clone(&self) -> VideoListParamsOrder
fn clone(&self) -> VideoListParamsOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VideoListParamsOrder
impl Debug for VideoListParamsOrder
Source§impl<'de> Deserialize<'de> for VideoListParamsOrder
impl<'de> Deserialize<'de> for VideoListParamsOrder
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 VideoListParamsOrder
Source§impl PartialEq for VideoListParamsOrder
impl PartialEq for VideoListParamsOrder
Source§impl Serialize for VideoListParamsOrder
impl Serialize for VideoListParamsOrder
impl StructuralPartialEq for VideoListParamsOrder
Auto Trait Implementations§
impl Freeze for VideoListParamsOrder
impl RefUnwindSafe for VideoListParamsOrder
impl Send for VideoListParamsOrder
impl Sync for VideoListParamsOrder
impl Unpin for VideoListParamsOrder
impl UnsafeUnpin for VideoListParamsOrder
impl UnwindSafe for VideoListParamsOrder
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