#[non_exhaustive]pub enum RealtimeTargetSource {
Forced,
Sampled,
Existing(RealtimeSlotOccupancy),
}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.
Forced
Caller forcing resolves this decision.
Sampled
The model sampler resolves this decision.
Existing(RealtimeSlotOccupancy)
An already placed input, forced value, or padding resolves the decision.
Trait Implementations§
Source§impl Clone for RealtimeTargetSource
impl Clone for RealtimeTargetSource
Source§fn clone(&self) -> RealtimeTargetSource
fn clone(&self) -> RealtimeTargetSource
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 RealtimeTargetSource
Source§impl Debug for RealtimeTargetSource
impl Debug for RealtimeTargetSource
impl Eq for RealtimeTargetSource
Source§impl PartialEq for RealtimeTargetSource
impl PartialEq for RealtimeTargetSource
impl StructuralPartialEq for RealtimeTargetSource
Auto Trait Implementations§
impl Freeze for RealtimeTargetSource
impl RefUnwindSafe for RealtimeTargetSource
impl Send for RealtimeTargetSource
impl Sync for RealtimeTargetSource
impl Unpin for RealtimeTargetSource
impl UnsafeUnpin for RealtimeTargetSource
impl UnwindSafe for RealtimeTargetSource
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