pub struct InputVideoContent {
pub video: String,
}Expand description
Video content for input messages.
Fields§
§video: StringThe video input - can be a URL or base64 encoded data.
Trait Implementations§
Source§impl Clone for InputVideoContent
impl Clone for InputVideoContent
Source§fn clone(&self) -> InputVideoContent
fn clone(&self) -> InputVideoContent
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 ComposeSchema for InputVideoContent
impl ComposeSchema for InputVideoContent
Source§impl Debug for InputVideoContent
impl Debug for InputVideoContent
Source§impl<'de> Deserialize<'de> for InputVideoContent
impl<'de> Deserialize<'de> for InputVideoContent
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 InputVideoContent
impl PartialEq for InputVideoContent
Source§impl Serialize for InputVideoContent
impl Serialize for InputVideoContent
impl StructuralPartialEq for InputVideoContent
Auto Trait Implementations§
impl Freeze for InputVideoContent
impl RefUnwindSafe for InputVideoContent
impl Send for InputVideoContent
impl Sync for InputVideoContent
impl Unpin for InputVideoContent
impl UnsafeUnpin for InputVideoContent
impl UnwindSafe for InputVideoContent
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