Type Alias Linear

Source
pub type Linear = PolynomialBase<LinearMonomial>;

Aliased Type§

struct Linear { /* private fields */ }

Implementations§

Source§

impl Linear

Source

pub fn to_bytes(&self) -> Vec<u8>

Source

pub fn from_bytes(bytes: &[u8]) -> Result<Self>

Trait Implementations§

Source§

impl Mul<Function> for &Linear

Source§

type Output = Function

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Function) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<Function> for Linear

Source§

type Output = Function

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Function) -> Self::Output

Performs the * operation. Read more
Source§

impl TryFrom<Linear> for Linear

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(value: Linear) -> Result<Self, Self::Error>

Performs the conversion.