pub struct RouterEntry {
pub dst: DstBlk,
pub src: SrcBlk,
pub peak: u16,
}
Expand description
Entry of route in router function.
Fields§
§dst: DstBlk
Destination block.
src: SrcBlk
Source block.
peak: u16
Detected level of audio signal.
Trait Implementations§
Source§impl Clone for RouterEntry
impl Clone for RouterEntry
Source§fn clone(&self) -> RouterEntry
fn clone(&self) -> RouterEntry
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 RouterEntry
impl Debug for RouterEntry
Source§impl Default for RouterEntry
impl Default for RouterEntry
Source§fn default() -> RouterEntry
fn default() -> RouterEntry
Returns the “default value” for a type. Read more
Source§impl PartialEq for RouterEntry
impl PartialEq for RouterEntry
impl Copy for RouterEntry
impl Eq for RouterEntry
impl StructuralPartialEq for RouterEntry
Auto Trait Implementations§
impl Freeze for RouterEntry
impl RefUnwindSafe for RouterEntry
impl Send for RouterEntry
impl Sync for RouterEntry
impl Unpin for RouterEntry
impl UnwindSafe for RouterEntry
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