Enum gstreamer_audio::AudioFormat
source · #[non_exhaustive]pub enum AudioFormat {
Show 32 variants
Unknown,
Encoded,
S8,
U8,
S16le,
S16be,
U16le,
U16be,
S2432le,
S2432be,
U2432le,
U2432be,
S32le,
S32be,
U32le,
U32be,
S24le,
S24be,
U24le,
U24be,
S20le,
S20be,
U20le,
U20be,
S18le,
S18be,
U18le,
U18be,
F32le,
F32be,
F64le,
F64be,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unknown
Encoded
S8
U8
S16le
S16be
U16le
U16be
S2432le
S2432be
U2432le
U2432be
S32le
S32be
U32le
U32be
S24le
S24be
U24le
U24be
S20le
S20be
U20le
U20be
S18le
S18be
U18le
U18be
F32le
F32be
F64le
F64be
Implementations§
source§impl AudioFormat
impl AudioFormat
pub fn from_string(format: &str) -> AudioFormat
source§impl AudioFormat
impl AudioFormat
pub fn build_integer( sign: bool, endianness: AudioEndianness, width: i32, depth: i32, ) -> Self
pub fn to_str<'a>(self) -> &'a GStr
pub fn iter_raw() -> AudioFormatIterator ⓘ
Trait Implementations§
source§impl Clone for AudioFormat
impl Clone for AudioFormat
source§fn clone(&self) -> AudioFormat
fn clone(&self) -> AudioFormat
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 AudioFormat
impl Debug for AudioFormat
source§impl Display for AudioFormat
impl Display for AudioFormat
source§impl From<AudioFormat> for AudioFormatInfo
impl From<AudioFormat> for AudioFormatInfo
source§fn from(f: AudioFormat) -> Self
fn from(f: AudioFormat) -> Self
Converts to this type from the input type.
source§impl From<AudioFormat> for Value
impl From<AudioFormat> for Value
source§fn from(v: AudioFormat) -> Self
fn from(v: AudioFormat) -> Self
Converts to this type from the input type.
source§impl FromStr for AudioFormat
impl FromStr for AudioFormat
source§impl<'a> FromValue<'a> for AudioFormat
impl<'a> FromValue<'a> for AudioFormat
source§type Checker = GenericValueTypeChecker<AudioFormat>
type Checker = GenericValueTypeChecker<AudioFormat>
Value type checker.
source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moresource§impl HasParamSpec for AudioFormat
impl HasParamSpec for AudioFormat
type ParamSpec = ParamSpecEnum
source§type SetValue = AudioFormat
type SetValue = AudioFormat
Preferred value to be used as setter for the associated ParamSpec.
type BuilderFn = fn(_: &str, _: AudioFormat) -> ParamSpecEnumBuilder<'_, AudioFormat>
fn param_spec_builder() -> Self::BuilderFn
source§impl Hash for AudioFormat
impl Hash for AudioFormat
source§impl Ord for AudioFormat
impl Ord for AudioFormat
source§impl PartialEq for AudioFormat
impl PartialEq for AudioFormat
source§impl PartialOrd for AudioFormat
impl PartialOrd for AudioFormat
source§impl StaticType for AudioFormat
impl StaticType for AudioFormat
source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.source§impl ToValue for AudioFormat
impl ToValue for AudioFormat
source§impl ValueType for AudioFormat
impl ValueType for AudioFormat
source§type Type = AudioFormat
type Type = AudioFormat
Type to get the
Type
from. Read moreimpl Copy for AudioFormat
impl Eq for AudioFormat
impl StructuralPartialEq for AudioFormat
Auto Trait Implementations§
impl Freeze for AudioFormat
impl RefUnwindSafe for AudioFormat
impl Send for AudioFormat
impl Sync for AudioFormat
impl Unpin for AudioFormat
impl UnwindSafe for AudioFormat
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
source§fn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.
source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.