pub struct DisparityRegion {
pub region_id: u8,
pub update_sequence_region_flag: bool,
pub reserved_flags: u8,
pub subregions: Vec<Subregion>,
}Expand description
A region entry in the disparity signalling segment.
Fields§
§region_id: u8Region identifier.
update_sequence_region_flag: boolWhether an update sequence follows for this region’s subregions.
reserved_flags: u8Reserved bits in the region flags byte (bits [6:2]).
subregions: Vec<Subregion>Subregions within this region.
Trait Implementations§
Source§impl Clone for DisparityRegion
impl Clone for DisparityRegion
Source§fn clone(&self) -> DisparityRegion
fn clone(&self) -> DisparityRegion
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 DisparityRegion
impl Debug for DisparityRegion
impl Eq for DisparityRegion
Source§impl PartialEq for DisparityRegion
impl PartialEq for DisparityRegion
Source§impl Serialize for DisparityRegion
Available on crate feature serde only.
impl Serialize for DisparityRegion
Available on crate feature
serde only.impl StructuralPartialEq for DisparityRegion
Auto Trait Implementations§
impl Freeze for DisparityRegion
impl RefUnwindSafe for DisparityRegion
impl Send for DisparityRegion
impl Sync for DisparityRegion
impl Unpin for DisparityRegion
impl UnsafeUnpin for DisparityRegion
impl UnwindSafe for DisparityRegion
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