pub struct AvcMuteParameters {
pub mutes: Vec<bool>,
}
Expand description
The parameters of mute. The Default
trait should be implemented to call
AvcMuteOperation::create_mute_parameters()
.
Fields§
§mutes: Vec<bool>
Muted or not.
Trait Implementations§
Source§impl Clone for AvcMuteParameters
impl Clone for AvcMuteParameters
Source§fn clone(&self) -> AvcMuteParameters
fn clone(&self) -> AvcMuteParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AvcMuteParameters
impl Debug for AvcMuteParameters
Source§impl PartialEq for AvcMuteParameters
impl PartialEq for AvcMuteParameters
impl Eq for AvcMuteParameters
impl StructuralPartialEq for AvcMuteParameters
Auto Trait Implementations§
impl Freeze for AvcMuteParameters
impl RefUnwindSafe for AvcMuteParameters
impl Send for AvcMuteParameters
impl Sync for AvcMuteParameters
impl Unpin for AvcMuteParameters
impl UnwindSafe for AvcMuteParameters
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