pub struct PoseBufferProviderProxy { /* private fields */ }
Implementations§
source§impl PoseBufferProviderProxy
impl PoseBufferProviderProxy
sourcepub fn take_event_stream(&self) -> PoseBufferProviderEventStream
pub fn take_event_stream(&self) -> PoseBufferProviderEventStream
Get a Stream of events from the remote end of the PoseBufferProvider protocol
Panics
Panics if the event stream was already taken.
sourcepub fn set_pose_buffer(
&self,
buffer: Vmo,
num_entries: u32,
base_time: i64,
time_interval: u64
) -> Result<(), Error>
pub fn set_pose_buffer( &self, buffer: Vmo, num_entries: u32, base_time: i64, time_interval: u64 ) -> Result<(), Error>
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.
Trait Implementations§
source§impl Clone for PoseBufferProviderProxy
impl Clone for PoseBufferProviderProxy
source§fn clone(&self) -> PoseBufferProviderProxy
fn clone(&self) -> PoseBufferProviderProxy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PoseBufferProviderProxy
impl Debug for PoseBufferProviderProxy
source§impl Proxy for PoseBufferProviderProxy
impl Proxy for PoseBufferProviderProxy
§type Protocol = PoseBufferProviderMarker
type Protocol = PoseBufferProviderMarker
The protocol which this
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
Create a proxy over the given channel.
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
Attempt to convert the proxy back into a channel. Read more
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
Get a reference to the proxy’s underlying channel. Read more