pub struct VideoInputConfig {
pub supported: bool,
pub formats: Vec<String>,
pub temporal_reasoning: bool,
pub audio_track: bool,
}Expand description
Video input configuration.
Fields§
§supported: bool§formats: Vec<String>§temporal_reasoning: bool§audio_track: boolTrait Implementations§
Source§impl Clone for VideoInputConfig
impl Clone for VideoInputConfig
Source§fn clone(&self) -> VideoInputConfig
fn clone(&self) -> VideoInputConfig
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 VideoInputConfig
impl Debug for VideoInputConfig
Source§impl Default for VideoInputConfig
impl Default for VideoInputConfig
Source§fn default() -> VideoInputConfig
fn default() -> VideoInputConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VideoInputConfig
impl<'de> Deserialize<'de> for VideoInputConfig
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<VideoInputConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<VideoInputConfig, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for VideoInputConfig
impl Serialize for VideoInputConfig
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for VideoInputConfig
impl RefUnwindSafe for VideoInputConfig
impl Send for VideoInputConfig
impl Sync for VideoInputConfig
impl Unpin for VideoInputConfig
impl UnsafeUnpin for VideoInputConfig
impl UnwindSafe for VideoInputConfig
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