pub enum Preset {
AnalyticNT,
Elliptic,
Combinatorics,
Physics,
NumberTheory,
Calculus,
}Expand description
Available built-in presets
Variants§
AnalyticNT
Analytic number theory: ζ values, Γ, log, π powers
Elliptic
Elliptic/modular: K(k), E(k), Γ(1/4), q-series
Combinatorics
Combinatorics: Catalan, Apéry, polylog patterns
Physics
Physics: π, log, γ, ζ, Clausen-type constants
NumberTheory
Number theory: rational/algebraic focus
Calculus
Calculus: standard functions, no exotic constants
Implementations§
Source§impl Preset
impl Preset
Sourcepub fn description(&self) -> &'static str
pub fn description(&self) -> &'static str
Get preset description
Sourcepub fn to_profile(&self) -> Profile
pub fn to_profile(&self) -> Profile
Generate the profile for this preset
Trait Implementations§
impl Copy for Preset
impl Eq for Preset
impl StructuralPartialEq for Preset
Auto Trait Implementations§
impl Freeze for Preset
impl RefUnwindSafe for Preset
impl Send for Preset
impl Sync for Preset
impl Unpin for Preset
impl UnsafeUnpin for Preset
impl UnwindSafe for Preset
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