pub struct VideoGenerationResponse {
pub data: Vec<VideoData>,
pub created: Option<i64>,
}Expand description
Response for video generation/editing jobs.
Fields§
§data: Vec<VideoData>Generated/edited items.
created: Option<i64>Optional creation timestamp.
Implementations§
Trait Implementations§
Source§impl Clone for VideoGenerationResponse
impl Clone for VideoGenerationResponse
Source§fn clone(&self) -> VideoGenerationResponse
fn clone(&self) -> VideoGenerationResponse
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 VideoGenerationResponse
impl Debug for VideoGenerationResponse
Source§impl<'de> Deserialize<'de> for VideoGenerationResponse
impl<'de> Deserialize<'de> for VideoGenerationResponse
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
Auto Trait Implementations§
impl Freeze for VideoGenerationResponse
impl RefUnwindSafe for VideoGenerationResponse
impl Send for VideoGenerationResponse
impl Sync for VideoGenerationResponse
impl Unpin for VideoGenerationResponse
impl UnsafeUnpin for VideoGenerationResponse
impl UnwindSafe for VideoGenerationResponse
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