[][src]Enum crystal_packing::basis::Basis

#[non_exhaustive]pub enum Basis<'a> {
    CellBasis {
        value: &'a SharedValue,
    },
    StandardBasis {
        value: &'a SharedValue,
        min: f64,
        max: f64,
    },
}

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CellBasis

Fields of CellBasis

value: &'a SharedValue
StandardBasis

Fields of StandardBasis

value: &'a SharedValuemin: f64max: f64

Implementations

impl<'a> Basis<'a>[src]

pub fn set_value(&self, new_value: f64) -> Result<(), Error>[src]

pub fn get_value(&self) -> f64[src]

pub fn scale(&self) -> f64[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Basis<'a>

impl<'a> Send for Basis<'a>

impl<'a> Sync for Basis<'a>

impl<'a> Unpin for Basis<'a>

impl<'a> !UnwindSafe for Basis<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,