Enum goxlr_ipc::GoXLRCommand
source · [−]pub enum GoXLRCommand {
Show 35 variants
SetFader(FaderName, ChannelName),
SetFaderMuteFunction(FaderName, MuteFunction),
SetVolume(ChannelName, u8),
SetMicrophoneGain(MicrophoneType, u16),
SetRouter(InputDevice, OutputDevice, bool),
SetCoughMuteFunction(MuteFunction),
SetSwearButtonVolume(i8),
SetEqMiniGain(MiniEqGains, i8),
SetEqMiniFreq(MiniEqFrequencies, f32),
SetEqGain(EqGains, i8),
SetEqFreq(EqFrequencies, f32),
SetGateThreshold(i8),
SetGateAttenuation(u8),
SetGateAttack(GateTimes),
SetGateRelease(GateTimes),
SetGateActive(bool),
SetCompressorThreshold(i8),
SetCompressorRatio(CompressorRatio),
SetCompressorAttack(CompressorAttackTime),
SetCompressorReleaseTime(CompressorReleaseTime),
SetCompressorMakeupGain(u8),
SetFaderDisplayStyle(FaderName, FaderDisplayStyle),
SetFaderColours(FaderName, String, String),
SetAllFaderColours(String, String),
SetAllFaderDisplayStyle(FaderDisplayStyle),
SetButtonColours(ButtonColourTargets, String, Option<String>),
SetButtonOffStyle(ButtonColourTargets, ButtonColourOffStyle),
SetButtonGroupColours(ButtonColourGroups, String, Option<String>),
SetButtonGroupOffStyle(ButtonColourGroups, ButtonColourOffStyle),
LoadProfile(String),
SaveProfile(),
SaveProfileAs(String),
LoadMicProfile(String),
SaveMicProfile(),
SaveMicProfileAs(String),
}
Variants
SetFader(FaderName, ChannelName)
SetFaderMuteFunction(FaderName, MuteFunction)
SetVolume(ChannelName, u8)
SetMicrophoneGain(MicrophoneType, u16)
SetRouter(InputDevice, OutputDevice, bool)
SetCoughMuteFunction(MuteFunction)
SetSwearButtonVolume(i8)
SetEqMiniGain(MiniEqGains, i8)
SetEqMiniFreq(MiniEqFrequencies, f32)
SetEqGain(EqGains, i8)
SetEqFreq(EqFrequencies, f32)
SetGateThreshold(i8)
SetGateAttenuation(u8)
SetGateAttack(GateTimes)
SetGateRelease(GateTimes)
SetGateActive(bool)
SetCompressorThreshold(i8)
SetCompressorRatio(CompressorRatio)
SetCompressorAttack(CompressorAttackTime)
SetCompressorReleaseTime(CompressorReleaseTime)
SetCompressorMakeupGain(u8)
SetFaderDisplayStyle(FaderName, FaderDisplayStyle)
SetFaderColours(FaderName, String, String)
SetAllFaderColours(String, String)
SetAllFaderDisplayStyle(FaderDisplayStyle)
SetButtonColours(ButtonColourTargets, String, Option<String>)
SetButtonOffStyle(ButtonColourTargets, ButtonColourOffStyle)
SetButtonGroupColours(ButtonColourGroups, String, Option<String>)
SetButtonGroupOffStyle(ButtonColourGroups, ButtonColourOffStyle)
LoadProfile(String)
SaveProfile()
SaveProfileAs(String)
LoadMicProfile(String)
SaveMicProfile()
SaveMicProfileAs(String)
Trait Implementations
sourceimpl Clone for GoXLRCommand
impl Clone for GoXLRCommand
sourcefn clone(&self) -> GoXLRCommand
fn clone(&self) -> GoXLRCommand
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GoXLRCommand
impl Debug for GoXLRCommand
sourceimpl<'de> Deserialize<'de> for GoXLRCommand
impl<'de> Deserialize<'de> for GoXLRCommand
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for GoXLRCommand
impl Serialize for GoXLRCommand
Auto Trait Implementations
impl RefUnwindSafe for GoXLRCommand
impl Send for GoXLRCommand
impl Sync for GoXLRCommand
impl Unpin for GoXLRCommand
impl UnwindSafe for GoXLRCommand
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more