pub struct VideoImageUrl {
pub url: String,
}Expand description
A URL wrapper used in image inputs.
Fields§
§url: StringHTTPS URL or data URL pointing at the image bytes.
Trait Implementations§
Source§impl Clone for VideoImageUrl
impl Clone for VideoImageUrl
Source§fn clone(&self) -> VideoImageUrl
fn clone(&self) -> VideoImageUrl
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 VideoImageUrl
impl Debug for VideoImageUrl
Source§impl Default for VideoImageUrl
impl Default for VideoImageUrl
Source§fn default() -> VideoImageUrl
fn default() -> VideoImageUrl
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VideoImageUrl
impl<'de> Deserialize<'de> for VideoImageUrl
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
Source§impl PartialEq for VideoImageUrl
impl PartialEq for VideoImageUrl
Source§impl Serialize for VideoImageUrl
impl Serialize for VideoImageUrl
impl StructuralPartialEq for VideoImageUrl
Auto Trait Implementations§
impl Freeze for VideoImageUrl
impl RefUnwindSafe for VideoImageUrl
impl Send for VideoImageUrl
impl Sync for VideoImageUrl
impl Unpin for VideoImageUrl
impl UnsafeUnpin for VideoImageUrl
impl UnwindSafe for VideoImageUrl
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