pub struct VideoDepthRange<'a> {
pub ranges: Vec<DepthRange<'a>>,
}Expand description
video_depth_range body (Table 160) — fully typed loop.
Fields§
§ranges: Vec<DepthRange<'a>>Depth range entries in wire order.
Trait Implementations§
Source§impl<'a> Clone for VideoDepthRange<'a>
impl<'a> Clone for VideoDepthRange<'a>
Source§fn clone(&self) -> VideoDepthRange<'a>
fn clone(&self) -> VideoDepthRange<'a>
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<'a> Debug for VideoDepthRange<'a>
impl<'a> Debug for VideoDepthRange<'a>
impl<'a> Eq for VideoDepthRange<'a>
Source§impl<'a> ExtensionBodyDef<'a> for VideoDepthRange<'a>
impl<'a> ExtensionBodyDef<'a> for VideoDepthRange<'a>
Source§impl<'a> Parse<'a> for VideoDepthRange<'a>
impl<'a> Parse<'a> for VideoDepthRange<'a>
Source§impl<'a> PartialEq for VideoDepthRange<'a>
impl<'a> PartialEq for VideoDepthRange<'a>
Source§fn eq(&self, other: &VideoDepthRange<'a>) -> bool
fn eq(&self, other: &VideoDepthRange<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for VideoDepthRange<'a>
impl<'a> Serialize for VideoDepthRange<'a>
Source§impl Serialize for VideoDepthRange<'_>
impl Serialize for VideoDepthRange<'_>
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl<'a> StructuralPartialEq for VideoDepthRange<'a>
Source§impl<'a> Yokeable<'a> for VideoDepthRange<'static>
impl<'a> Yokeable<'a> for VideoDepthRange<'static>
Source§type Output = VideoDepthRange<'a>
type Output = VideoDepthRange<'a>
This type MUST be
Self with the 'static replaced with 'a, i.e. Self<'a>Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Auto Trait Implementations§
impl<'a> Freeze for VideoDepthRange<'a>
impl<'a> RefUnwindSafe for VideoDepthRange<'a>
impl<'a> Send for VideoDepthRange<'a>
impl<'a> Sync for VideoDepthRange<'a>
impl<'a> Unpin for VideoDepthRange<'a>
impl<'a> UnsafeUnpin for VideoDepthRange<'a>
impl<'a> UnwindSafe for VideoDepthRange<'a>
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