#[repr(transparent)]pub struct NativeBufferANDROIDBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> NativeBufferANDROIDBuilder<'a>
impl<'a> NativeBufferANDROIDBuilder<'a>
pub fn handle(self, handle: *const c_void) -> NativeBufferANDROIDBuilder<'a>
pub fn stride(self, stride: i32) -> NativeBufferANDROIDBuilder<'a>
pub fn format(self, format: i32) -> NativeBufferANDROIDBuilder<'a>
pub fn usage(self, usage: i32) -> NativeBufferANDROIDBuilder<'a>
pub fn usage2(
self,
usage2: NativeBufferUsage2ANDROID
) -> NativeBufferANDROIDBuilder<'a>
sourcepub fn build(self) -> NativeBufferANDROID
pub fn build(self) -> NativeBufferANDROID
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations
sourceimpl<'a> Deref for NativeBufferANDROIDBuilder<'a>
impl<'a> Deref for NativeBufferANDROIDBuilder<'a>
type Target = NativeBufferANDROID
type Target = NativeBufferANDROID
The resulting type after dereferencing.
sourcefn deref(&self) -> &<NativeBufferANDROIDBuilder<'a> as Deref>::Target
fn deref(&self) -> &<NativeBufferANDROIDBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for NativeBufferANDROIDBuilder<'a>
impl<'a> DerefMut for NativeBufferANDROIDBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <NativeBufferANDROIDBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <NativeBufferANDROIDBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for NativeBufferANDROIDBuilder<'a>
impl<'a> !Send for NativeBufferANDROIDBuilder<'a>
impl<'a> !Sync for NativeBufferANDROIDBuilder<'a>
impl<'a> Unpin for NativeBufferANDROIDBuilder<'a>
impl<'a> UnwindSafe for NativeBufferANDROIDBuilder<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more