#[repr(u32)]pub enum EVoiceResult {
k_EVoiceResultOK = 0,
k_EVoiceResultNotInitialized = 1,
k_EVoiceResultNotRecording = 2,
k_EVoiceResultNoData = 3,
k_EVoiceResultBufferTooSmall = 4,
k_EVoiceResultDataCorrupted = 5,
k_EVoiceResultRestricted = 6,
k_EVoiceResultUnsupportedCodec = 7,
k_EVoiceResultReceiverOutOfDate = 8,
k_EVoiceResultReceiverDidNotAnswer = 9,
}
Variants§
k_EVoiceResultOK = 0
k_EVoiceResultNotInitialized = 1
k_EVoiceResultNotRecording = 2
k_EVoiceResultNoData = 3
k_EVoiceResultBufferTooSmall = 4
k_EVoiceResultDataCorrupted = 5
k_EVoiceResultRestricted = 6
k_EVoiceResultUnsupportedCodec = 7
k_EVoiceResultReceiverOutOfDate = 8
k_EVoiceResultReceiverDidNotAnswer = 9
Trait Implementations§
Source§impl Clone for EVoiceResult
impl Clone for EVoiceResult
Source§fn clone(&self) -> EVoiceResult
fn clone(&self) -> EVoiceResult
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 EVoiceResult
impl Debug for EVoiceResult
Source§impl Hash for EVoiceResult
impl Hash for EVoiceResult
Source§impl Ord for EVoiceResult
impl Ord for EVoiceResult
Source§fn cmp(&self, other: &EVoiceResult) -> Ordering
fn cmp(&self, other: &EVoiceResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EVoiceResult
impl PartialEq for EVoiceResult
Source§impl PartialOrd for EVoiceResult
impl PartialOrd for EVoiceResult
impl Copy for EVoiceResult
impl Eq for EVoiceResult
impl StructuralPartialEq for EVoiceResult
Auto Trait Implementations§
impl Freeze for EVoiceResult
impl RefUnwindSafe for EVoiceResult
impl Send for EVoiceResult
impl Sync for EVoiceResult
impl Unpin for EVoiceResult
impl UnwindSafe for EVoiceResult
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