#[non_exhaustive]pub struct VideoReferenceInput {
pub id: String,
}Expand description
EN: Reference to a completed video used by JSON video APIs. 中文:JSON video API 使用的已完成视频引用。
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: StringEN: Completed video identifier. 中文:已完成视频的标识符。
Implementations§
Trait Implementations§
Source§impl Clone for VideoReferenceInput
impl Clone for VideoReferenceInput
Source§fn clone(&self) -> VideoReferenceInput
fn clone(&self) -> VideoReferenceInput
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 VideoReferenceInput
impl Debug for VideoReferenceInput
impl Eq for VideoReferenceInput
Source§impl PartialEq for VideoReferenceInput
impl PartialEq for VideoReferenceInput
Source§fn eq(&self, other: &VideoReferenceInput) -> bool
fn eq(&self, other: &VideoReferenceInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VideoReferenceInput
impl Serialize for VideoReferenceInput
impl StructuralPartialEq for VideoReferenceInput
Auto Trait Implementations§
impl Freeze for VideoReferenceInput
impl RefUnwindSafe for VideoReferenceInput
impl Send for VideoReferenceInput
impl Sync for VideoReferenceInput
impl Unpin for VideoReferenceInput
impl UnsafeUnpin for VideoReferenceInput
impl UnwindSafe for VideoReferenceInput
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.