Struct sample::types::u48::U48
[−]
[src]
pub struct U48(_);
Methods
impl U48
[src]
fn new(val: i64) -> Option<Self>
Construct a new sample if the given value is within range.
Returns None
if val
is out of range.
fn new_unchecked(s: i64) -> Self
Constructs a new sample without checking for overflowing.
This should only be used if the user can guarantee the sample will be within range and they require the extra performance.
If this function is used, the sample crate can't guarantee that the returned sample or any interacting samples will remain within their MIN and MAX bounds.
fn inner(self) -> i64
Return the internal value used to represent the sample type.
Trait Implementations
impl FromSample<i8> for U48
[src]
fn from_sample_(s: i8) -> Self
impl FromSample<i16> for U48
[src]
fn from_sample_(s: i16) -> Self
impl FromSample<I24> for U48
[src]
fn from_sample_(s: I24) -> Self
impl FromSample<i32> for U48
[src]
fn from_sample_(s: i32) -> Self
impl FromSample<I48> for U48
[src]
fn from_sample_(s: I48) -> Self
impl FromSample<i64> for U48
[src]
fn from_sample_(s: i64) -> Self
impl FromSample<u8> for U48
[src]
fn from_sample_(s: u8) -> Self
impl FromSample<u16> for U48
[src]
fn from_sample_(s: u16) -> Self
impl FromSample<U24> for U48
[src]
fn from_sample_(s: U24) -> Self
impl FromSample<u32> for U48
[src]
fn from_sample_(s: u32) -> Self
impl FromSample<u64> for U48
[src]
fn from_sample_(s: u64) -> Self
impl FromSample<f32> for U48
[src]
fn from_sample_(s: f32) -> Self
impl FromSample<f64> for U48
[src]
fn from_sample_(s: f64) -> Self
impl From<i64> for U48
[src]
impl Add<U48> for U48
[src]
type Output = U48
The resulting type after applying the +
operator
fn add(self, other: Self) -> Self
The method for the +
operator
impl Sub<U48> for U48
[src]
type Output = U48
The resulting type after applying the -
operator
fn sub(self, other: Self) -> Self
The method for the -
operator
impl Mul<U48> for U48
[src]
type Output = U48
The resulting type after applying the *
operator
fn mul(self, other: Self) -> Self
The method for the *
operator
impl Div<U48> for U48
[src]
type Output = U48
The resulting type after applying the /
operator
fn div(self, other: Self) -> Self
The method for the /
operator
impl Not for U48
[src]
type Output = U48
The resulting type after applying the !
operator
fn not(self) -> U48
The method for the unary !
operator
impl Rem<U48> for U48
[src]
type Output = U48
The resulting type after applying the %
operator
fn rem(self, other: Self) -> Self
The method for the %
operator
impl Shl<U48> for U48
[src]
type Output = U48
The resulting type after applying the <<
operator
fn shl(self, other: Self) -> Self
The method for the <<
operator
impl Shr<U48> for U48
[src]
type Output = U48
The resulting type after applying the >>
operator
fn shr(self, other: Self) -> Self
The method for the >>
operator
impl BitAnd<U48> for U48
[src]
type Output = U48
The resulting type after applying the &
operator
fn bitand(self, other: Self) -> Self
The method for the &
operator
impl BitOr<U48> for U48
[src]
type Output = U48
The resulting type after applying the |
operator
fn bitor(self, other: Self) -> Self
The method for the |
operator
impl BitXor<U48> for U48
[src]
type Output = U48
The resulting type after applying the ^
operator
fn bitxor(self, other: Self) -> Self
The method for the ^
operator
impl From<u8> for U48
[src]
impl From<u16> for U48
[src]
impl From<U20> for U48
[src]
impl From<U24> for U48
[src]
impl From<u32> for U48
[src]
impl Sample for U48
[src]
type Signed = i64
When summing two samples of a signal together, it is necessary for both samples to be represented in some signed format. This associated Addition
type represents the format to which Self
should be converted for optimal Addition
performance. Read more
type Float = f64
When multiplying two samples of a signal together, it is necessary for both samples to be represented in some signed, floating-point format. This associated Multiplication
type represents the format to which Self
should be converted for optimal Multiplication
performance. Read more
fn equilibrium() -> Self
The equilibrium value for the wave that this Sample
type represents. This is normally the value that is equal distance from both the min and max ranges of the sample. Read more
fn identity() -> Self::Float
The multiplicative identity of the signal. Read more
fn to_sample<S>(self) -> S where Self: ToSample<S>
Convert self
to any type that implements FromSample<Self>
. Read more
fn from_sample<S>(s: S) -> Self where Self: FromSample<S>
Create a Self
from any type that implements ToSample<Self>
. Read more
fn to_signed_sample(self) -> Self::Signed
Converts self
to the equivalent Sample
in the associated Signed
format. Read more
fn to_float_sample(self) -> Self::Float
Converts self
to the equivalent Sample
in the associated Float
format. Read more
fn add_amp(self, amp: Self::Signed) -> Self
Adds (or "offsets") the amplitude of the Sample
by the given signed amplitude. Read more
fn mul_amp(self, amp: Self::Float) -> Self
Multiplies (or "scales") the amplitude of the Sample
by the given float amplitude. Read more
Derived Implementations
impl Default for U48
[src]
impl Ord for U48
[src]
fn cmp(&self, __arg_0: &U48) -> Ordering
This method returns an Ordering
between self
and other
. Read more
impl PartialOrd for U48
[src]
fn partial_cmp(&self, __arg_0: &U48) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &U48) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &U48) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &U48) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &U48) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Eq for U48
[src]
impl PartialEq for U48
[src]
fn eq(&self, __arg_0: &U48) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &U48) -> bool
This method tests for !=
.
impl Debug for U48
[src]
impl Clone for U48
[src]
fn clone(&self) -> U48
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more