#[repr(C)]pub struct CaptureStreamId {
pub id: u64,
}Expand description
Identifies one camera capture stream - assigned by start_camera, used
to read the stream back (get_camera_frame) and to stop / pause / flip it.
Fields§
§id: u64Trait Implementations§
Source§impl Clone for CaptureStreamId
impl Clone for CaptureStreamId
Source§fn clone(&self) -> CaptureStreamId
fn clone(&self) -> CaptureStreamId
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 Debug for CaptureStreamId
impl Debug for CaptureStreamId
Source§impl Hash for CaptureStreamId
impl Hash for CaptureStreamId
Source§impl Ord for CaptureStreamId
impl Ord for CaptureStreamId
Source§fn cmp(&self, other: &CaptureStreamId) -> Ordering
fn cmp(&self, other: &CaptureStreamId) -> Ordering
1.21.0 (const: unstable) · 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 CaptureStreamId
impl PartialEq for CaptureStreamId
Source§fn eq(&self, other: &CaptureStreamId) -> bool
fn eq(&self, other: &CaptureStreamId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CaptureStreamId
impl PartialOrd for CaptureStreamId
impl Copy for CaptureStreamId
impl Eq for CaptureStreamId
impl StructuralPartialEq for CaptureStreamId
Auto Trait Implementations§
impl Freeze for CaptureStreamId
impl RefUnwindSafe for CaptureStreamId
impl Send for CaptureStreamId
impl Sync for CaptureStreamId
impl Unpin for CaptureStreamId
impl UnsafeUnpin for CaptureStreamId
impl UnwindSafe for CaptureStreamId
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