[][src]Struct l_group_formulas::short_free_group_term::ShortFreeGroupTerm

pub struct ShortFreeGroupTerm {
    pub left: Option<Literal>,
    pub mid: Option<Literal>,
    pub right: Option<Literal>,
}

Short means length at most three

Fields

left: Option<Literal>mid: Option<Literal>right: Option<Literal>

Implementations

impl ShortFreeGroupTerm[src]

pub fn new(
    left: Option<Literal>,
    mid: Option<Literal>,
    right: Option<Literal>
) -> ShortFreeGroupTerm
[src]

Trait Implementations

impl Clone for ShortFreeGroupTerm[src]

impl Copy for ShortFreeGroupTerm[src]

impl Debug for ShortFreeGroupTerm[src]

impl Eq for ShortFreeGroupTerm[src]

impl<'_> From<&'_ str> for ShortFreeGroupTerm[src]

impl From<FreeGroupTerm> for ShortFreeGroupTerm[src]

fn from(term: FreeGroupTerm) -> ShortFreeGroupTerm[src]

ignores everything after the third symbol

impl From<Literal> for ShortFreeGroupTerm[src]

impl From<ShortFreeGroupTerm> for FreeGroupTerm[src]

impl From<char> for ShortFreeGroupTerm[src]

impl Len for ShortFreeGroupTerm[src]

impl Mul<ShortFreeGroupTerm> for ShortFreeGroupTerm[src]

type Output = ShortFreeGroupTerm

The resulting type after applying the * operator.

fn mul(self, other: ShortFreeGroupTerm) -> ShortFreeGroupTerm[src]

Warning: This does not check whether the product is indeed short.

impl Ord for ShortFreeGroupTerm[src]

impl PartialEq<ShortFreeGroupTerm> for ShortFreeGroupTerm[src]

impl PartialOrd<ShortFreeGroupTerm> for ShortFreeGroupTerm[src]

impl StructuralEq for ShortFreeGroupTerm[src]

impl StructuralPartialEq for ShortFreeGroupTerm[src]

impl Term for ShortFreeGroupTerm[src]

impl ToString for ShortFreeGroupTerm[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> 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> ToString for T where
    T: Display + ?Sized
[src]

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.