pub struct DepthRange<'a> {
pub range_type: u8,
pub body: DepthRangeBody<'a>,
}Expand description
One depth range entry (Table 160 inner loop).
Fields§
§range_type: u8range_type(8) — Table 161.
body: DepthRangeBody<'a>Body interpreted by range_type.
Trait Implementations§
Source§impl<'a> Clone for DepthRange<'a>
impl<'a> Clone for DepthRange<'a>
Source§fn clone(&self) -> DepthRange<'a>
fn clone(&self) -> DepthRange<'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 DepthRange<'a>
impl<'a> Debug for DepthRange<'a>
impl<'a> Eq for DepthRange<'a>
Source§impl<'a> PartialEq for DepthRange<'a>
impl<'a> PartialEq for DepthRange<'a>
Source§fn eq(&self, other: &DepthRange<'a>) -> bool
fn eq(&self, other: &DepthRange<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for DepthRange<'a>
impl<'a> Serialize for DepthRange<'a>
impl<'a> StructuralPartialEq for DepthRange<'a>
Source§impl<'a> Yokeable<'a> for DepthRange<'static>
impl<'a> Yokeable<'a> for DepthRange<'static>
Source§type Output = DepthRange<'a>
type Output = DepthRange<'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 DepthRange<'a>
impl<'a> RefUnwindSafe for DepthRange<'a>
impl<'a> Send for DepthRange<'a>
impl<'a> Sync for DepthRange<'a>
impl<'a> Unpin for DepthRange<'a>
impl<'a> UnsafeUnpin for DepthRange<'a>
impl<'a> UnwindSafe for DepthRange<'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