Struct orkhon::prelude::ops::invariants::AxisInfo[][src]

pub struct AxisInfo {
    pub inputs: SmallVec<[Option<usize>; 4]>,
    pub outputs: SmallVec<[Option<usize>; 4]>,
    pub period: usize,
    pub disposable: bool,
}

Translation invariance property.

Fields

inputs: SmallVec<[Option<usize>; 4]>outputs: SmallVec<[Option<usize>; 4]>period: usizedisposable: bool

Implementations

impl AxisInfo[src]

pub fn simple(axis: usize) -> AxisInfo[src]

pub fn with_period(self, period: usize) -> AxisInfo[src]

pub fn disposable(self, disposable: bool) -> AxisInfo[src]

pub fn for_node(
    _model: &Graph<TypedFact, Box<dyn TypedOp + 'static, Global>>,
    node: &Node<TypedFact, Box<dyn TypedOp + 'static, Global>>,
    axis: usize
) -> Result<AxisInfo, Error>
[src]

Trait Implementations

impl Clone for AxisInfo[src]

impl Debug for AxisInfo[src]

impl Default for AxisInfo[src]

impl Eq for AxisInfo[src]

impl FromIterator<AxisInfo> for Invariants[src]

impl Hash for AxisInfo[src]

impl PartialEq<AxisInfo> for AxisInfo[src]

impl StructuralEq for AxisInfo[src]

impl StructuralPartialEq for AxisInfo[src]

Auto Trait Implementations

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> DynClone for T where
    T: Clone
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.