pub struct SPEFHeader {Show 15 fields
pub edition: CompactString,
pub design: CompactString,
pub date: CompactString,
pub vendor: CompactString,
pub program: CompactString,
pub version: CompactString,
pub design_flow: Vec<CompactString>,
pub divider: char,
pub delimiter: char,
pub bus_delimiter_left: char,
pub bus_delimiter_right: char,
pub time_unit: f32,
pub cap_unit: f32,
pub res_unit: f32,
pub induct_unit: f32,
}Expand description
SPEF header (from *SPEF to *L_UNIT).
Fields§
§edition: CompactString§design: CompactString§date: CompactString§vendor: CompactString§program: CompactString§version: CompactString§design_flow: Vec<CompactString>§divider: char§delimiter: char§bus_delimiter_left: char§bus_delimiter_right: char§time_unit: f32§cap_unit: f32§res_unit: f32§induct_unit: f32Trait Implementations§
Auto Trait Implementations§
impl Freeze for SPEFHeader
impl RefUnwindSafe for SPEFHeader
impl Send for SPEFHeader
impl Sync for SPEFHeader
impl Unpin for SPEFHeader
impl UnwindSafe for SPEFHeader
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more