Enum libpulse_binding::sample::Format
source ·
[−]#[repr(C)]
pub enum Format {
Show 14 variants
U8,
ALaw,
ULaw,
S16le,
S16be,
F32le,
F32be,
S32le,
S32be,
S24le,
S24be,
S24_32le,
S24_32be,
Invalid,
}
Expand description
Sample format.
Note, native-endian (endian-independent) associated constants are available on this type which should be preferred over direct use of the endian-specific variants, for improved flexibility and avoidance of mistakes.
Variants
U8
Unsigned 8 Bit PCM.
ALaw
8 Bit a-Law.
ULaw
8 Bit mu-Law.
S16le
Signed 16 Bit PCM, little endian (PC).
S16be
Signed 16 Bit PCM, big endian.
F32le
32 Bit IEEE floating point, little endian (PC), range -1.0 to 1.0.
F32be
32 Bit IEEE floating point, big endian, range -1.0 to 1.0.
S32le
Signed 32 Bit PCM, little endian (PC).
S32be
Signed 32 Bit PCM, big endian.
S24le
Signed 24 Bit PCM packed, little endian (PC).
S24be
Signed 24 Bit PCM packed, big endian.
S24_32le
Signed 24 Bit PCM in LSB of 32 Bit words, little endian (PC).
S24_32be
Signed 24 Bit PCM in LSB of 32 Bit words, big endian.
Invalid
An invalid value.
Implementations
Similar to Spec::sample_size()
but take a sample format instead of full sample spec.
Gets a descriptive string for the specified sample format.
Parses a sample format text. Inverse of to_string()
.
Checks if format is little endian.
Returns true
when the specified format is little endian, false
if big endian. Returns
None
when endianness does not apply to this format, or if unknown.
Checks if format is big endian.
Returns true
when the specified format is big endian, false
if little endian. Returns
None
when endianness does not apply to this format, or if unknown.
Checks if format is native endian.
Returns true
when the specified format is native endian, false
when not. Returns None
when endianness does not apply to the specified format, or endianness is unknown.
Trait Implementations
Performs the conversion.
Converts an i64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an u64
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an isize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an i8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an i16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an i32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an i128
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts a usize
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an u8
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an u16
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an u32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts an u128
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts a f32
to return an optional value of this type. If the
value cannot be represented by this type, then None
is returned. Read more
Converts the value of self
to an i64
. If the value cannot be
represented by an i64
, then None
is returned. Read more
Converts the value of self
to a u64
. If the value cannot be
represented by a u64
, then None
is returned. Read more
Converts the value of self
to an isize
. If the value cannot be
represented by an isize
, then None
is returned. Read more
Converts the value of self
to an i8
. If the value cannot be
represented by an i8
, then None
is returned. Read more
Converts the value of self
to an i16
. If the value cannot be
represented by an i16
, then None
is returned. Read more
Converts the value of self
to an i32
. If the value cannot be
represented by an i32
, then None
is returned. Read more
Converts the value of self
to an i128
. If the value cannot be
represented by an i128
(i64
under the default implementation), then
None
is returned. Read more
Converts the value of self
to a usize
. If the value cannot be
represented by a usize
, then None
is returned. Read more
Converts the value of self
to a u8
. If the value cannot be
represented by a u8
, then None
is returned. Read more
Converts the value of self
to a u16
. If the value cannot be
represented by a u16
, then None
is returned. Read more
Converts the value of self
to a u32
. If the value cannot be
represented by a u32
, then None
is returned. Read more
Converts the value of self
to a u128
. If the value cannot be
represented by a u128
(u64
under the default implementation), then
None
is returned. Read more
Converts the value of self
to an f32
. Overflows may map to positive
or negative inifinity, otherwise None
is returned if the value cannot
be represented by an f32
. Read more
Auto Trait Implementations
impl RefUnwindSafe for Format
impl UnwindSafe for Format
Blanket Implementations
Mutably borrows from an owned value. Read more