pub enum PoseBufferProviderRequest {
SetPoseBuffer {
buffer: Vmo,
num_entries: u32,
base_time: i64,
time_interval: u64,
control_handle: PoseBufferProviderControlHandle,
},
}
Expand description
A minimal fidl interface to allow sourcing the contents of a PoseBuffer from another service.
Variants§
SetPoseBuffer
Sets the PoseBuffer and the parameters PoseBufferProvider will use to fill that PoseBuffer. Setting this when it is already set will replace the previously set parameters with the new parameters, which will release the provider’s reference to the buffer.
Implementations§
source§impl PoseBufferProviderRequest
impl PoseBufferProviderRequest
pub fn into_set_pose_buffer( self ) -> Option<(Vmo, u32, i64, u64, PoseBufferProviderControlHandle)>
sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL