Struct libreda_lefdef::def_ast::ViaMaskNum
source · pub struct ViaMaskNum {
pub top_mask_num: MaskNum,
pub cut_mask_num: MaskNum,
pub bottom_mask_num: MaskNum,
}Expand description
Mask number of a via for multi patterning.
Fields§
§top_mask_num: MaskNumMask number of top layer.
cut_mask_num: MaskNumMask number of cut layer.
bottom_mask_num: MaskNumMask number of bottom layer.
Trait Implementations§
source§impl Clone for ViaMaskNum
impl Clone for ViaMaskNum
source§fn clone(&self) -> ViaMaskNum
fn clone(&self) -> ViaMaskNum
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 moresource§impl Debug for ViaMaskNum
impl Debug for ViaMaskNum
source§impl Display for ViaMaskNum
impl Display for ViaMaskNum
source§impl FromStr for ViaMaskNum
impl FromStr for ViaMaskNum
source§impl PartialEq for ViaMaskNum
impl PartialEq for ViaMaskNum
source§fn eq(&self, other: &ViaMaskNum) -> bool
fn eq(&self, other: &ViaMaskNum) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ViaMaskNum
impl Eq for ViaMaskNum
impl StructuralPartialEq for ViaMaskNum
Auto Trait Implementations§
impl Freeze for ViaMaskNum
impl RefUnwindSafe for ViaMaskNum
impl Send for ViaMaskNum
impl Sync for ViaMaskNum
impl Unpin for ViaMaskNum
impl UnwindSafe for ViaMaskNum
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