#[non_exhaustive]pub struct VideoProfileMember {
pub comment: Option<String>,
pub name: String,
pub children: Vec<VideoProfile>,
}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>§name: String§children: Vec<VideoProfile>Trait Implementations§
Source§impl Clone for VideoProfileMember
impl Clone for VideoProfileMember
Source§fn clone(&self) -> VideoProfileMember
fn clone(&self) -> VideoProfileMember
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 VideoProfileMember
impl Debug for VideoProfileMember
Source§impl Default for VideoProfileMember
impl Default for VideoProfileMember
Source§fn default() -> VideoProfileMember
fn default() -> VideoProfileMember
Returns the “default value” for a type. Read more
Source§impl PartialEq for VideoProfileMember
impl PartialEq for VideoProfileMember
impl Eq for VideoProfileMember
impl StructuralPartialEq for VideoProfileMember
Auto Trait Implementations§
impl Freeze for VideoProfileMember
impl RefUnwindSafe for VideoProfileMember
impl Send for VideoProfileMember
impl Sync for VideoProfileMember
impl Unpin for VideoProfileMember
impl UnwindSafe for VideoProfileMember
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