pub struct SurfaceFeaturePayloadBranches {
pub family: u8,
pub header_code: u8,
pub branches: Vec<SurfaceFeaturePayloadBranch>,
}Expand description
Exact counted branch group in a surface-feature payload.
Fields§
§family: u8Serialized construction family byte following a0 5a.
header_code: u8Serialized group header code.
branches: Vec<SurfaceFeaturePayloadBranch>Ordered branches matching the declared group count.
Trait Implementations§
Source§impl Clone for SurfaceFeaturePayloadBranches
impl Clone for SurfaceFeaturePayloadBranches
Source§fn clone(&self) -> SurfaceFeaturePayloadBranches
fn clone(&self) -> SurfaceFeaturePayloadBranches
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 moreimpl Eq for SurfaceFeaturePayloadBranches
impl StructuralPartialEq for SurfaceFeaturePayloadBranches
Auto Trait Implementations§
impl Freeze for SurfaceFeaturePayloadBranches
impl RefUnwindSafe for SurfaceFeaturePayloadBranches
impl Send for SurfaceFeaturePayloadBranches
impl Sync for SurfaceFeaturePayloadBranches
impl Unpin for SurfaceFeaturePayloadBranches
impl UnsafeUnpin for SurfaceFeaturePayloadBranches
impl UnwindSafe for SurfaceFeaturePayloadBranches
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