#[repr(C)]pub enum VSPropertyType {
Unset = 0,
Int = 1,
Float = 2,
Data = 3,
Function = 4,
VideoNode = 5,
AudioNode = 6,
VideoFrame = 7,
AudioFrame = 8,
}
Expand description
Types of properties that can be stored in a VSMap
.
Variants§
Unset = 0
Int = 1
Float = 2
Data = 3
Function = 4
VideoNode = 5
AudioNode = 6
VideoFrame = 7
AudioFrame = 8
Trait Implementations§
Source§impl Clone for VSPropertyType
impl Clone for VSPropertyType
Source§fn clone(&self) -> VSPropertyType
fn clone(&self) -> VSPropertyType
Returns a copy 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 VSPropertyType
impl Debug for VSPropertyType
Source§impl Hash for VSPropertyType
impl Hash for VSPropertyType
Source§impl Ord for VSPropertyType
impl Ord for VSPropertyType
Source§fn cmp(&self, other: &VSPropertyType) -> Ordering
fn cmp(&self, other: &VSPropertyType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VSPropertyType
impl PartialEq for VSPropertyType
Source§impl PartialOrd for VSPropertyType
impl PartialOrd for VSPropertyType
impl Copy for VSPropertyType
impl Eq for VSPropertyType
impl StructuralPartialEq for VSPropertyType
Auto Trait Implementations§
impl Freeze for VSPropertyType
impl RefUnwindSafe for VSPropertyType
impl Send for VSPropertyType
impl Sync for VSPropertyType
impl Unpin for VSPropertyType
impl UnwindSafe for VSPropertyType
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