#[non_exhaustive]pub enum VideoDeletedObjectType {
VideoDeleted,
}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.
VideoDeleted
Trait Implementations§
Source§impl Clone for VideoDeletedObjectType
impl Clone for VideoDeletedObjectType
Source§fn clone(&self) -> VideoDeletedObjectType
fn clone(&self) -> VideoDeletedObjectType
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 VideoDeletedObjectType
impl Debug for VideoDeletedObjectType
Source§impl<'de> Deserialize<'de> for VideoDeletedObjectType
impl<'de> Deserialize<'de> for VideoDeletedObjectType
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 VideoDeletedObjectType
Source§impl PartialEq for VideoDeletedObjectType
impl PartialEq for VideoDeletedObjectType
Source§impl Serialize for VideoDeletedObjectType
impl Serialize for VideoDeletedObjectType
impl StructuralPartialEq for VideoDeletedObjectType
Auto Trait Implementations§
impl Freeze for VideoDeletedObjectType
impl RefUnwindSafe for VideoDeletedObjectType
impl Send for VideoDeletedObjectType
impl Sync for VideoDeletedObjectType
impl Unpin for VideoDeletedObjectType
impl UnsafeUnpin for VideoDeletedObjectType
impl UnwindSafe for VideoDeletedObjectType
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