pub enum AllocatorRequest {
RegisterBufferCollection {
args: RegisterBufferCollectionArgs,
responder: AllocatorRegisterBufferCollectionResponder,
},
}
Variants§
RegisterBufferCollection
A BufferCollection is a set of VMOs created by Sysmem and shared by a number of participants, one of which is the Flatland Renderer. Some content, such as Images, use a BufferCollection as their backing memory.
See RegisterBufferCollectionArgs
for information on each argument.
Implementations§
Source§impl AllocatorRequest
impl AllocatorRequest
pub fn into_register_buffer_collection( self, ) -> Option<(RegisterBufferCollectionArgs, AllocatorRegisterBufferCollectionResponder)>
Sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AllocatorRequest
impl !RefUnwindSafe for AllocatorRequest
impl Send for AllocatorRequest
impl Sync for AllocatorRequest
impl Unpin for AllocatorRequest
impl !UnwindSafe for AllocatorRequest
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