pub struct BcoCompoundAm824Stream {
pub freq: u32,
pub rate_ctl: bool,
pub entries: Vec<BcoCompoundAm824StreamEntry>,
}
Expand description
Parameters for compound AM824 stream.
Fields§
§freq: u32
The nominal frequency of media clock.
rate_ctl: bool
Whether to atopt Command-based rate control defined in 1394 Trading Association.
entries: Vec<BcoCompoundAm824StreamEntry>
The entries of available stream format.
Trait Implementations§
Source§impl Clone for BcoCompoundAm824Stream
impl Clone for BcoCompoundAm824Stream
Source§fn clone(&self) -> BcoCompoundAm824Stream
fn clone(&self) -> BcoCompoundAm824Stream
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 BcoCompoundAm824Stream
impl Debug for BcoCompoundAm824Stream
Source§impl Default for BcoCompoundAm824Stream
impl Default for BcoCompoundAm824Stream
Source§impl PartialEq for BcoCompoundAm824Stream
impl PartialEq for BcoCompoundAm824Stream
Source§fn eq(&self, other: &BcoCompoundAm824Stream) -> bool
fn eq(&self, other: &BcoCompoundAm824Stream) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for BcoCompoundAm824Stream
impl StructuralPartialEq for BcoCompoundAm824Stream
Auto Trait Implementations§
impl Freeze for BcoCompoundAm824Stream
impl RefUnwindSafe for BcoCompoundAm824Stream
impl Send for BcoCompoundAm824Stream
impl Sync for BcoCompoundAm824Stream
impl Unpin for BcoCompoundAm824Stream
impl UnwindSafe for BcoCompoundAm824Stream
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