pub enum ConductivityError {
InvalidConductivity,
InvalidArea,
InvalidThickness,
InvalidTemperatureDifference,
InvalidResistivity,
}Variants§
Trait Implementations§
Source§impl Clone for ConductivityError
impl Clone for ConductivityError
Source§fn clone(&self) -> ConductivityError
fn clone(&self) -> ConductivityError
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 moreSource§impl Debug for ConductivityError
impl Debug for ConductivityError
Source§impl PartialEq for ConductivityError
impl PartialEq for ConductivityError
Source§fn eq(&self, other: &ConductivityError) -> bool
fn eq(&self, other: &ConductivityError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ConductivityError
impl Eq for ConductivityError
impl StructuralPartialEq for ConductivityError
Auto Trait Implementations§
impl Freeze for ConductivityError
impl RefUnwindSafe for ConductivityError
impl Send for ConductivityError
impl Sync for ConductivityError
impl Unpin for ConductivityError
impl UnsafeUnpin for ConductivityError
impl UnwindSafe for ConductivityError
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