Struct voicemeeter::interface::parameters::OutOfRangeError
source · pub struct OutOfRangeError {
pub name: String,
pub index: ZIndex,
pub program: VoicemeeterApplication,
}
Available on crate feature
interface
only.Expand description
Parameter is out of range for current program
Fields§
§name: String
Name of the parameter base
i.e “Strip” or “Bus”
index: ZIndex
Index that was out of range
program: VoicemeeterApplication
Current program
Trait Implementations§
source§impl Clone for OutOfRangeError
impl Clone for OutOfRangeError
source§fn clone(&self) -> OutOfRangeError
fn clone(&self) -> OutOfRangeError
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 OutOfRangeError
impl Debug for OutOfRangeError
source§impl Display for OutOfRangeError
impl Display for OutOfRangeError
source§impl Error for OutOfRangeError
impl Error for OutOfRangeError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<OutOfRangeError> for ParameterError
impl From<OutOfRangeError> for ParameterError
source§fn from(source: OutOfRangeError) -> Self
fn from(source: OutOfRangeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for OutOfRangeError
impl Send for OutOfRangeError
impl Sync for OutOfRangeError
impl Unpin for OutOfRangeError
impl UnwindSafe for OutOfRangeError
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