pub enum VideoState {
On,
Off,
OnFlipped,
}Expand description
Determines if video is visible on the stage and if it is flipped. Has no effect if the project does not use an extension with video input.
Variants§
Trait Implementations§
Source§impl Clone for VideoState
impl Clone for VideoState
Source§fn clone(&self) -> VideoState
fn clone(&self) -> VideoState
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 VideoState
impl Debug for VideoState
Source§impl<'de> Deserialize<'de> for VideoState
impl<'de> Deserialize<'de> for VideoState
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 VideoState
impl PartialEq for VideoState
Source§impl Serialize for VideoState
impl Serialize for VideoState
impl Copy for VideoState
impl Eq for VideoState
impl StructuralPartialEq for VideoState
Auto Trait Implementations§
impl Freeze for VideoState
impl RefUnwindSafe for VideoState
impl Send for VideoState
impl Sync for VideoState
impl Unpin for VideoState
impl UnwindSafe for VideoState
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