pub struct VideoUrl {
pub url: Url,
pub detail: Option<ImageDetail>,
pub uuid: Option<Uuid>,
}Fields§
§url: UrlEither a URL of the video or the base64 encoded video data.
detail: Option<ImageDetail>Specifies the detail level of the video processing.
uuid: Option<Uuid>Optional unique identifier for the video.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for VideoUrl
impl<'de> Deserialize<'de> for VideoUrl
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 StructuralPartialEq for VideoUrl
Auto Trait Implementations§
impl Freeze for VideoUrl
impl RefUnwindSafe for VideoUrl
impl Send for VideoUrl
impl Sync for VideoUrl
impl Unpin for VideoUrl
impl UnwindSafe for VideoUrl
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