#[non_exhaustive]pub enum RealtimeForcedSource {
CurrentInput,
Retained,
}Expand description
How one text or depth-codebook decision is resolved.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CurrentInput
The forcing payload belongs to the currently submitted portable frame.
Retained
The forcing payload was retained at the target coordinate by an earlier frame.
Trait Implementations§
Source§impl Clone for RealtimeForcedSource
impl Clone for RealtimeForcedSource
Source§fn clone(&self) -> RealtimeForcedSource
fn clone(&self) -> RealtimeForcedSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RealtimeForcedSource
Source§impl Debug for RealtimeForcedSource
impl Debug for RealtimeForcedSource
impl Eq for RealtimeForcedSource
Source§impl PartialEq for RealtimeForcedSource
impl PartialEq for RealtimeForcedSource
impl StructuralPartialEq for RealtimeForcedSource
Auto Trait Implementations§
impl Freeze for RealtimeForcedSource
impl RefUnwindSafe for RealtimeForcedSource
impl Send for RealtimeForcedSource
impl Sync for RealtimeForcedSource
impl Unpin for RealtimeForcedSource
impl UnsafeUnpin for RealtimeForcedSource
impl UnwindSafe for RealtimeForcedSource
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