pub struct VoicemeeterVban<'a> { /* private fields */ }Available on crate feature
interface only.Expand description
Vban parameters
Implementations§
Source§impl<'a> VoicemeeterVban<'a>
impl<'a> VoicemeeterVban<'a>
Sourcepub fn param(&self, dot: impl Display) -> Cow<'static, ParameterNameRef>
pub fn param(&self, dot: impl Display) -> Cow<'static, ParameterNameRef>
Get the identifier for an option: Recorder.mode.{dot}
Sourcepub fn enable(&self) -> BoolParameter<'_>
pub fn enable(&self) -> BoolParameter<'_>
Turn VBAN on or off
Sourcepub fn incoming_stream(
&self,
index: impl Into<ZIndex>,
) -> Result<VoicemeeterVbanStream<'a, true>, ParameterError>
pub fn incoming_stream( &self, index: impl Into<ZIndex>, ) -> Result<VoicemeeterVbanStream<'a, true>, ParameterError>
Incoming VBAN stream
Sourcepub fn outgoing_stream(
&self,
index: impl Into<ZIndex>,
) -> Result<VoicemeeterVbanStream<'a, false>, ParameterError>
pub fn outgoing_stream( &self, index: impl Into<ZIndex>, ) -> Result<VoicemeeterVbanStream<'a, false>, ParameterError>
Outgoing VBAN stream
Auto Trait Implementations§
impl<'a> Freeze for VoicemeeterVban<'a>
impl<'a> RefUnwindSafe for VoicemeeterVban<'a>
impl<'a> Send for VoicemeeterVban<'a>
impl<'a> Sync for VoicemeeterVban<'a>
impl<'a> Unpin for VoicemeeterVban<'a>
impl<'a> UnwindSafe for VoicemeeterVban<'a>
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