pub enum FetchHint {
Prefetch,
Safe,
}
Expand description
This tells the synthesis processor whether or not it can attempt to optimize rendering by pre-fetching audio. The value is either safe to say that audio is only fetched when it is needed, never before; or prefetch to permit, but not require the processor to pre-fetch the audio.
“Speech Synthesis Markup Language (SSML) Version 1.1” Copyright © 2010 W3C® (MIT, ERCIM, Keio), All Rights Reserved.
Variants§
Prefetch
The processor can perform an optimisation where it fetches the audio before it is needed
Safe
The audio should only be fetched when needed
Trait Implementations§
Source§impl Ord for FetchHint
impl Ord for FetchHint
Source§impl PartialOrd for FetchHint
impl PartialOrd for FetchHint
impl Copy for FetchHint
impl Eq for FetchHint
impl StructuralPartialEq for FetchHint
Auto Trait Implementations§
impl Freeze for FetchHint
impl RefUnwindSafe for FetchHint
impl Send for FetchHint
impl Sync for FetchHint
impl Unpin for FetchHint
impl UnwindSafe for FetchHint
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