[][src]Struct spice21::analysis::Stamps

pub struct Stamps<NumT> {
    pub g: Vec<(Option<Eindex>, NumT)>,
    pub b: Vec<(Option<VarIndex>, NumT)>,
}

Stamps are the interface between Components and Solvers. Each Component returns Stamps from each call to load, conveying its Matrix-contributions in Stamps.g and its RHS contributions in Stamps.b.

Fields

g: Vec<(Option<Eindex>, NumT)>b: Vec<(Option<VarIndex>, NumT)>

Implementations

impl<NumT: SpNum> Stamps<NumT>[src]

pub fn new() -> Stamps<NumT>[src]

Trait Implementations

impl<NumT: Debug> Debug for Stamps<NumT>[src]

Auto Trait Implementations

impl<NumT> RefUnwindSafe for Stamps<NumT> where
    NumT: RefUnwindSafe

impl<NumT> Send for Stamps<NumT> where
    NumT: Send

impl<NumT> Sync for Stamps<NumT> where
    NumT: Sync

impl<NumT> Unpin for Stamps<NumT> where
    NumT: Unpin

impl<NumT> UnwindSafe for Stamps<NumT> where
    NumT: UnwindSafe

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, 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.