pub struct GeometryNVBuilder<'a> { /* private fields */ }Expand description
Builder for GeometryNV with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> GeometryNVBuilder<'a>
impl<'a> GeometryNVBuilder<'a>
pub fn geometry_type(self, value: GeometryTypeKHR) -> GeometryNVBuilder<'a>
pub fn geometry(self, value: GeometryDataNV) -> GeometryNVBuilder<'a>
pub fn flags(self, value: GeometryFlagBitsKHR) -> GeometryNVBuilder<'a>
Sourcepub fn push_next<T>(self, next: &'a mut T) -> GeometryNVBuilder<'a>where
T: ExtendsGeometryNV,
pub fn push_next<T>(self, next: &'a mut T) -> GeometryNVBuilder<'a>where
T: ExtendsGeometryNV,
Prepend a struct to the pNext chain. See GeometryNV’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for GeometryNVBuilder<'a>
impl<'a> Deref for GeometryNVBuilder<'a>
Source§type Target = GeometryNV
type Target = GeometryNV
The resulting type after dereferencing.
Source§impl<'a> DerefMut for GeometryNVBuilder<'a>
impl<'a> DerefMut for GeometryNVBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for GeometryNVBuilder<'a>
impl<'a> RefUnwindSafe for GeometryNVBuilder<'a>
impl<'a> !Send for GeometryNVBuilder<'a>
impl<'a> !Sync for GeometryNVBuilder<'a>
impl<'a> Unpin for GeometryNVBuilder<'a>
impl<'a> UnsafeUnpin for GeometryNVBuilder<'a>
impl<'a> UnwindSafe for GeometryNVBuilder<'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