pub enum SoundProductionType {
Show 21 variants
PLUCKED_BY_BP = 0,
PLUCKED = 1,
BOWED = 2,
STRUCK_BY_BP = 3,
STRUCK = 4,
VIBRATE_BP_AGAINST_OPENING = 5,
BLOW_AGAINST_FIPPLE = 6,
BLOW_OVER_OPENING_SIDE = 7,
BLOW_OVER_OPENING_END = 8,
BLOW_OVER_SINGLE_REED = 9,
BLOW_OVER_DOUBLE_REED = 10,
BLOW_OVER_FREE_REED = 11,
STRUCK_TOGETHER = 12,
SHAKEN = 13,
SCRAPED = 14,
FRICTION = 15,
RESONATOR = 16,
BAG_OVER_REED = 17,
AIR_OVER_REED = 18,
AIR_OVER_FREE_REED = 19,
AIR_AGAINST_FIPPLE = 20,
}Variants§
PLUCKED_BY_BP = 0
PLUCKED = 1
BOWED = 2
STRUCK_BY_BP = 3
STRUCK = 4
VIBRATE_BP_AGAINST_OPENING = 5
BLOW_AGAINST_FIPPLE = 6
BLOW_OVER_OPENING_SIDE = 7
BLOW_OVER_OPENING_END = 8
BLOW_OVER_SINGLE_REED = 9
BLOW_OVER_DOUBLE_REED = 10
BLOW_OVER_FREE_REED = 11
STRUCK_TOGETHER = 12
SHAKEN = 13
SCRAPED = 14
FRICTION = 15
RESONATOR = 16
BAG_OVER_REED = 17
AIR_OVER_REED = 18
AIR_OVER_FREE_REED = 19
AIR_AGAINST_FIPPLE = 20
Trait Implementations§
Source§impl Clone for SoundProductionType
impl Clone for SoundProductionType
Source§fn clone(&self) -> SoundProductionType
fn clone(&self) -> SoundProductionType
Returns a duplicate 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 SoundProductionType
impl Debug for SoundProductionType
Source§impl Default for SoundProductionType
impl Default for SoundProductionType
Source§impl Enum for SoundProductionType
impl Enum for SoundProductionType
Source§const NAME: &'static str = "SoundProductionType"
const NAME: &'static str = "SoundProductionType"
Enum name as specified in
.proto file. Read moreSource§const VALUES: &'static [SoundProductionType]
const VALUES: &'static [SoundProductionType]
All enum values for enum type.
Source§impl EnumFull for SoundProductionType
impl EnumFull for SoundProductionType
Source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
Source§impl Hash for SoundProductionType
impl Hash for SoundProductionType
Source§impl PartialEq for SoundProductionType
impl PartialEq for SoundProductionType
impl Copy for SoundProductionType
impl Eq for SoundProductionType
impl StructuralPartialEq for SoundProductionType
Auto Trait Implementations§
impl Freeze for SoundProductionType
impl RefUnwindSafe for SoundProductionType
impl Send for SoundProductionType
impl Sync for SoundProductionType
impl Unpin for SoundProductionType
impl UnwindSafe for SoundProductionType
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