#[repr(u8)]pub enum SyncType {
Audio = 0,
Video = 1,
Animation = 2,
Page = 3,
Custom = 255,
}Expand description
Represents the type of synchronization
Variants§
Audio = 0
Audio synchronization (text-to-audio)
Video = 1
Video synchronization (text-to-video)
Animation = 2
Animation synchronization
Page = 3
Page turn synchronization (for pagination)
Custom = 255
Custom synchronization type
Trait Implementations§
impl Copy for SyncType
Source§impl<'de> Deserialize<'de> for SyncType
impl<'de> Deserialize<'de> for SyncType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SyncType
impl StructuralPartialEq for SyncType
Auto Trait Implementations§
impl Freeze for SyncType
impl RefUnwindSafe for SyncType
impl Send for SyncType
impl Sync for SyncType
impl Unpin for SyncType
impl UnsafeUnpin for SyncType
impl UnwindSafe for SyncType
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