pub struct ValidatedRoute {
pub from: String,
pub to: String,
pub from_channels: Vec<usize>,
pub to_channels: Vec<usize>,
pub gain_db: f32,
pub mute: bool,
}Expand description
A route that has passed pure validation.
Fields§
§from: String§to: String§from_channels: Vec<usize>§to_channels: Vec<usize>§gain_db: f32§mute: boolTrait Implementations§
Source§impl Clone for ValidatedRoute
impl Clone for ValidatedRoute
Source§fn clone(&self) -> ValidatedRoute
fn clone(&self) -> ValidatedRoute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ValidatedRoute
impl Debug for ValidatedRoute
Auto Trait Implementations§
impl Freeze for ValidatedRoute
impl RefUnwindSafe for ValidatedRoute
impl Send for ValidatedRoute
impl Sync for ValidatedRoute
impl Unpin for ValidatedRoute
impl UnsafeUnpin for ValidatedRoute
impl UnwindSafe for ValidatedRoute
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