pub enum VideoEditInput {
Reference(VideoReferenceInputParam),
Input(InputSource),
}Available on crate feature
video-types only.Expand description
Input for video edit - either a reference to an existing video or a file upload.
Variants§
Reference(VideoReferenceInputParam)
A reference to a completed video by its ID.
Input(InputSource)
A video input source.
Trait Implementations§
Source§impl Clone for VideoEditInput
impl Clone for VideoEditInput
Source§fn clone(&self) -> VideoEditInput
fn clone(&self) -> VideoEditInput
Returns a duplicate 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 VideoEditInput
impl Debug for VideoEditInput
Source§impl Default for VideoEditInput
impl Default for VideoEditInput
Source§impl PartialEq for VideoEditInput
impl PartialEq for VideoEditInput
impl StructuralPartialEq for VideoEditInput
Auto Trait Implementations§
impl !Freeze for VideoEditInput
impl RefUnwindSafe for VideoEditInput
impl Send for VideoEditInput
impl Sync for VideoEditInput
impl Unpin for VideoEditInput
impl UnsafeUnpin for VideoEditInput
impl UnwindSafe for VideoEditInput
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