#[non_exhaustive]pub struct VideoFormatProperties {
pub comment: Option<String>,
pub struct_: String,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.comment: Option<String>
§struct_: String
Trait Implementations§
Source§impl Clone for VideoFormatProperties
impl Clone for VideoFormatProperties
Source§fn clone(&self) -> VideoFormatProperties
fn clone(&self) -> VideoFormatProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VideoFormatProperties
impl Debug for VideoFormatProperties
Source§impl Default for VideoFormatProperties
impl Default for VideoFormatProperties
Source§fn default() -> VideoFormatProperties
fn default() -> VideoFormatProperties
Returns the “default value” for a type. Read more
Source§impl PartialEq for VideoFormatProperties
impl PartialEq for VideoFormatProperties
impl Eq for VideoFormatProperties
impl StructuralPartialEq for VideoFormatProperties
Auto Trait Implementations§
impl Freeze for VideoFormatProperties
impl RefUnwindSafe for VideoFormatProperties
impl Send for VideoFormatProperties
impl Sync for VideoFormatProperties
impl Unpin for VideoFormatProperties
impl UnwindSafe for VideoFormatProperties
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