pub enum DataValues<'s> {
InlineExpr {
params: Vec<Cow<'s, str>>,
values: Vec<Value<'s>>,
},
InlineNum {
params: Vec<Cow<'s, str>>,
values: Vec<f64>,
},
MER(),
LAM(),
}Variants§
InlineExpr
InlineNum
MER()
https://eda-cpu1.eias.junzhuo.site/~junzhuo/hspice/index.htm#page/hspice_14/data.htm Concatenated (series merging) data files to use.
LAM()
Column-laminated (parallel merging) data files to use.
Trait Implementations§
Source§impl<'s> Clone for DataValues<'s>
impl<'s> Clone for DataValues<'s>
Source§fn clone(&self) -> DataValues<'s>
fn clone(&self) -> DataValues<'s>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'s> Freeze for DataValues<'s>
impl<'s> RefUnwindSafe for DataValues<'s>
impl<'s> Send for DataValues<'s>
impl<'s> Sync for DataValues<'s>
impl<'s> Unpin for DataValues<'s>
impl<'s> UnwindSafe for DataValues<'s>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more