Struct voicemeeter::types::ParameterName
source · pub struct ParameterName(/* private fields */);
Available on crate feature
interface
only.Expand description
Voicemeeter Parameter
Implementations§
source§impl ParameterName
impl ParameterName
sourcepub fn from_static(raw: &'static str) -> Self
pub fn from_static(raw: &'static str) -> Self
Constructs a new ParameterName from a static reference
sourcepub fn into_boxed_ref(self) -> Box<ParameterNameRef>
pub fn into_boxed_ref(self) -> Box<ParameterNameRef>
Converts this ParameterName
into a Box<ParameterNameRef>
This will drop any excess capacity.
Methods from Deref<Target = ParameterNameRef>§
Trait Implementations§
source§impl AsRef<ParameterNameRef> for ParameterName
impl AsRef<ParameterNameRef> for ParameterName
source§fn as_ref(&self) -> &ParameterNameRef
fn as_ref(&self) -> &ParameterNameRef
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<str> for ParameterName
impl AsRef<str> for ParameterName
source§impl Borrow<ParameterNameRef> for ParameterName
impl Borrow<ParameterNameRef> for ParameterName
source§fn borrow(&self) -> &ParameterNameRef
fn borrow(&self) -> &ParameterNameRef
Immutably borrows from an owned value. Read more
source§impl Borrow<str> for ParameterName
impl Borrow<str> for ParameterName
source§impl Clone for ParameterName
impl Clone for ParameterName
source§fn clone(&self) -> ParameterName
fn clone(&self) -> ParameterName
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 ParameterName
impl Debug for ParameterName
source§impl Deref for ParameterName
impl Deref for ParameterName
source§impl Display for ParameterName
impl Display for ParameterName
source§impl From<&ParameterNameRef> for ParameterName
impl From<&ParameterNameRef> for ParameterName
source§fn from(s: &ParameterNameRef) -> Self
fn from(s: &ParameterNameRef) -> Self
Converts to this type from the input type.
source§impl From<&str> for ParameterName
impl From<&str> for ParameterName
source§impl From<Box<ParameterNameRef>> for ParameterName
impl From<Box<ParameterNameRef>> for ParameterName
source§fn from(r: Box<ParameterNameRef>) -> Self
fn from(r: Box<ParameterNameRef>) -> Self
Converts to this type from the input type.
source§impl<'a> From<Cow<'a, ParameterNameRef>> for ParameterName
impl<'a> From<Cow<'a, ParameterNameRef>> for ParameterName
source§fn from(r: Cow<'a, ParameterNameRef>) -> Self
fn from(r: Cow<'a, ParameterNameRef>) -> Self
Converts to this type from the input type.
source§impl From<ParameterName> for Box<ParameterNameRef>
impl From<ParameterName> for Box<ParameterNameRef>
source§fn from(r: ParameterName) -> Self
fn from(r: ParameterName) -> Self
Converts to this type from the input type.
source§impl<'a> From<ParameterName> for Cow<'a, ParameterNameRef>
impl<'a> From<ParameterName> for Cow<'a, ParameterNameRef>
source§fn from(owned: ParameterName) -> Self
fn from(owned: ParameterName) -> Self
Converts to this type from the input type.
source§impl From<ParameterName> for String
impl From<ParameterName> for String
source§fn from(s: ParameterName) -> Self
fn from(s: ParameterName) -> Self
Converts to this type from the input type.
source§impl From<String> for ParameterName
impl From<String> for ParameterName
source§impl FromStr for ParameterName
impl FromStr for ParameterName
source§impl Hash for ParameterName
impl Hash for ParameterName
source§impl Ord for ParameterName
impl Ord for ParameterName
source§impl PartialEq<&ParameterNameRef> for ParameterName
impl PartialEq<&ParameterNameRef> for ParameterName
source§fn eq(&self, other: &&ParameterNameRef) -> bool
fn eq(&self, other: &&ParameterNameRef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<ParameterName> for &ParameterNameRef
impl PartialEq<ParameterName> for &ParameterNameRef
source§fn eq(&self, other: &ParameterName) -> bool
fn eq(&self, other: &ParameterName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<ParameterName> for ParameterNameRef
impl PartialEq<ParameterName> for ParameterNameRef
source§fn eq(&self, other: &ParameterName) -> bool
fn eq(&self, other: &ParameterName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq<ParameterNameRef> for ParameterName
impl PartialEq<ParameterNameRef> for ParameterName
source§fn eq(&self, other: &ParameterNameRef) -> bool
fn eq(&self, other: &ParameterNameRef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialEq for ParameterName
impl PartialEq for ParameterName
source§fn eq(&self, other: &ParameterName) -> bool
fn eq(&self, other: &ParameterName) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ParameterName
impl PartialOrd for ParameterName
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for ParameterName
impl StructuralPartialEq for ParameterName
Auto Trait Implementations§
impl RefUnwindSafe for ParameterName
impl Send for ParameterName
impl Sync for ParameterName
impl Unpin for ParameterName
impl UnwindSafe for ParameterName
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