#[non_exhaustive]pub enum RealtimeSlotOccupancy {
Input,
Forced,
Padding,
Sampled,
}Expand description
Provenance of an occupied portable schedule slot.
This records only scheduling metadata. Token payloads remain backend-owned.
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.
Input
Live input-side audio supplied for this transition.
Forced
Caller-forced text or generated audio target.
Padding
Convention-defined warm-up padding.
Sampled
A model-selected text or audio target.
Trait Implementations§
Source§impl Clone for RealtimeSlotOccupancy
impl Clone for RealtimeSlotOccupancy
Source§fn clone(&self) -> RealtimeSlotOccupancy
fn clone(&self) -> RealtimeSlotOccupancy
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 RealtimeSlotOccupancy
Source§impl Debug for RealtimeSlotOccupancy
impl Debug for RealtimeSlotOccupancy
impl Eq for RealtimeSlotOccupancy
Source§impl PartialEq for RealtimeSlotOccupancy
impl PartialEq for RealtimeSlotOccupancy
impl StructuralPartialEq for RealtimeSlotOccupancy
Auto Trait Implementations§
impl Freeze for RealtimeSlotOccupancy
impl RefUnwindSafe for RealtimeSlotOccupancy
impl Send for RealtimeSlotOccupancy
impl Sync for RealtimeSlotOccupancy
impl Unpin for RealtimeSlotOccupancy
impl UnsafeUnpin for RealtimeSlotOccupancy
impl UnwindSafe for RealtimeSlotOccupancy
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