pub enum MediaFormat {
Mp4,
Wmv,
Avi,
Mp3,
Wav,
}Expand description
A video/audio clip’s encoding (<a:videoFile>/<a:audioFile>’s referenced media part) —
mirrors PictureFormat’s own “closed enum, small known set” posture, covering the handful of
container formats real PowerPoint itself natively embeds rather than every format a media player
could theoretically open.
Variants§
Trait Implementations§
Source§impl Clone for MediaFormat
impl Clone for MediaFormat
Source§fn clone(&self) -> MediaFormat
fn clone(&self) -> MediaFormat
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 MediaFormat
Source§impl Debug for MediaFormat
impl Debug for MediaFormat
impl Eq for MediaFormat
Source§impl PartialEq for MediaFormat
impl PartialEq for MediaFormat
impl StructuralPartialEq for MediaFormat
Auto Trait Implementations§
impl Freeze for MediaFormat
impl RefUnwindSafe for MediaFormat
impl Send for MediaFormat
impl Sync for MediaFormat
impl Unpin for MediaFormat
impl UnsafeUnpin for MediaFormat
impl UnwindSafe for MediaFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.