pub enum StreamType {
Unknown = -1,
Video = 0,
Infrared = 1,
Color = 2,
Depth = 3,
Accelerometer = 4,
Gyroscope = 5,
LeftInfrared = 6,
RightInfrared = 7,
RawPhase = 8,
Confidence = 9,
}Expand description
Stream Type
Variants§
Unknown = -1
Unknown stream type
Video = 0
Video stream
Infrared = 1
Infrared stream
Color = 2
Color stream
Depth = 3
Depth stream
Accelerometer = 4
Accelerometer stream
Gyroscope = 5
Gyroscope stream
LeftInfrared = 6
Left infrared stream
RightInfrared = 7
Right infrared stream
RawPhase = 8
Raw phase stream
Confidence = 9
Confidence stream
Trait Implementations§
Source§impl Clone for OBStreamType
impl Clone for OBStreamType
Source§fn clone(&self) -> OBStreamType
fn clone(&self) -> OBStreamType
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 OBStreamType
impl Debug for OBStreamType
Source§impl Hash for OBStreamType
impl Hash for OBStreamType
Source§impl PartialEq for OBStreamType
impl PartialEq for OBStreamType
impl Copy for OBStreamType
impl Eq for OBStreamType
impl StructuralPartialEq for OBStreamType
Auto Trait Implementations§
impl Freeze for OBStreamType
impl RefUnwindSafe for OBStreamType
impl Send for OBStreamType
impl Sync for OBStreamType
impl Unpin for OBStreamType
impl UnwindSafe for OBStreamType
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