pub struct MsdfGeneratorConfig {
pub overlap_support: bool,
pub error_correction: ErrorCorrectionConfig,
}Expand description
Configuration of the multi-channel generator (adds error correction).
Fields§
§overlap_support: bool§error_correction: ErrorCorrectionConfigImplementations§
Source§impl MsdfGeneratorConfig
impl MsdfGeneratorConfig
pub fn new( overlap_support: bool, error_correction: ErrorCorrectionConfig, ) -> Self
Trait Implementations§
Source§impl Clone for MsdfGeneratorConfig
impl Clone for MsdfGeneratorConfig
Source§fn clone(&self) -> MsdfGeneratorConfig
fn clone(&self) -> MsdfGeneratorConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MsdfGeneratorConfig
Source§impl Debug for MsdfGeneratorConfig
impl Debug for MsdfGeneratorConfig
Auto Trait Implementations§
impl Freeze for MsdfGeneratorConfig
impl RefUnwindSafe for MsdfGeneratorConfig
impl Send for MsdfGeneratorConfig
impl Sync for MsdfGeneratorConfig
impl Unpin for MsdfGeneratorConfig
impl UnsafeUnpin for MsdfGeneratorConfig
impl UnwindSafe for MsdfGeneratorConfig
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§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 more