pub struct AvcLevelParameters {
pub levels: Vec<i16>,
}
Expand description
The parameters of signal level. The Default
trait should be implemented to call
AvcLevelOperation::create_level_parameters()
.
Fields§
§levels: Vec<i16>
The signal levels.
Trait Implementations§
Source§impl Clone for AvcLevelParameters
impl Clone for AvcLevelParameters
Source§fn clone(&self) -> AvcLevelParameters
fn clone(&self) -> AvcLevelParameters
Returns a copy 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 AvcLevelParameters
impl Debug for AvcLevelParameters
Source§impl PartialEq for AvcLevelParameters
impl PartialEq for AvcLevelParameters
impl Eq for AvcLevelParameters
impl StructuralPartialEq for AvcLevelParameters
Auto Trait Implementations§
impl Freeze for AvcLevelParameters
impl RefUnwindSafe for AvcLevelParameters
impl Send for AvcLevelParameters
impl Sync for AvcLevelParameters
impl Unpin for AvcLevelParameters
impl UnwindSafe for AvcLevelParameters
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