pub struct PdeMessageVariant;Expand description
PDE message variants
Implementations§
Source§impl PdeMessageVariant
impl PdeMessageVariant
pub const WHAT_IS_PDE: u8 = 1
pub const PDE_VS_ODE: u8 = 2
pub const PDE_CLASSIFICATION: u8 = 3
pub const ELLIPTIC_EQUATION: u8 = 4
pub const PARABOLIC_EQUATION: u8 = 5
pub const HYPERBOLIC_EQUATION: u8 = 6
pub const HEAT_EQUATION: u8 = 7
pub const WAVE_EQUATION: u8 = 8
pub const LAPLACE_EQUATION: u8 = 9
pub const POISSON_EQUATION: u8 = 10
pub const SEPARATION_OF_VARIABLES: u8 = 11
pub const METHOD_OF_CHARACTERISTICS: u8 = 12
pub const FOURIER_SERIES: u8 = 13
pub const GREENS_FUNCTIONS: u8 = 14
pub const DIRICHLET_CONDITION: u8 = 15
pub const NEUMANN_CONDITION: u8 = 16
pub const ROBIN_CONDITION: u8 = 17
pub const PERIODIC_CONDITION: u8 = 18
Auto Trait Implementations§
impl Freeze for PdeMessageVariant
impl RefUnwindSafe for PdeMessageVariant
impl Send for PdeMessageVariant
impl Sync for PdeMessageVariant
impl Unpin for PdeMessageVariant
impl UnsafeUnpin for PdeMessageVariant
impl UnwindSafe for PdeMessageVariant
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> 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