pub struct VideoGenerationResponse {
pub created: u64,
pub data: Vec<VideoData>,
}Expand description
Video generation response
Fields§
§created: u64Unix timestamp of when the response was created
data: Vec<VideoData>Array of generated videos
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