#[repr(transparent)]pub struct ExternalFormatANDROIDBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> ExternalFormatANDROIDBuilder<'a>
impl<'a> ExternalFormatANDROIDBuilder<'a>
pub fn external_format(
self,
external_format: u64
) -> ExternalFormatANDROIDBuilder<'a>
sourcepub fn build(self) -> ExternalFormatANDROID
pub fn build(self) -> ExternalFormatANDROID
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 ExternalFormatANDROIDBuilder<'a>
impl<'a> Deref for ExternalFormatANDROIDBuilder<'a>
type Target = ExternalFormatANDROID
type Target = ExternalFormatANDROID
The resulting type after dereferencing.
sourcefn deref(&self) -> &<ExternalFormatANDROIDBuilder<'a> as Deref>::Target
fn deref(&self) -> &<ExternalFormatANDROIDBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for ExternalFormatANDROIDBuilder<'a>
impl<'a> DerefMut for ExternalFormatANDROIDBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <ExternalFormatANDROIDBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <ExternalFormatANDROIDBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsImageCreateInfo for ExternalFormatANDROIDBuilder<'_>
impl<'_> ExtendsSamplerYcbcrConversionCreateInfo for ExternalFormatANDROIDBuilder<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for ExternalFormatANDROIDBuilder<'a>
impl<'a> !Send for ExternalFormatANDROIDBuilder<'a>
impl<'a> !Sync for ExternalFormatANDROIDBuilder<'a>
impl<'a> Unpin for ExternalFormatANDROIDBuilder<'a>
impl<'a> UnwindSafe for ExternalFormatANDROIDBuilder<'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