pub struct BoundaryPattern {
pub boundary_cell_ids: Vec<Id>,
}Expand description
Shared boundary pattern.
Fields§
§boundary_cell_ids: Vec<Id>Boundary cell identifiers.
Trait Implementations§
Source§impl Clone for BoundaryPattern
impl Clone for BoundaryPattern
Source§fn clone(&self) -> BoundaryPattern
fn clone(&self) -> BoundaryPattern
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BoundaryPattern
impl Debug for BoundaryPattern
Source§impl Default for BoundaryPattern
impl Default for BoundaryPattern
Source§fn default() -> BoundaryPattern
fn default() -> BoundaryPattern
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BoundaryPattern
impl<'de> Deserialize<'de> for BoundaryPattern
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BoundaryPattern
impl Hash for BoundaryPattern
Source§impl Ord for BoundaryPattern
impl Ord for BoundaryPattern
Source§fn cmp(&self, other: &BoundaryPattern) -> Ordering
fn cmp(&self, other: &BoundaryPattern) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BoundaryPattern
impl PartialEq for BoundaryPattern
Source§fn eq(&self, other: &BoundaryPattern) -> bool
fn eq(&self, other: &BoundaryPattern) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for BoundaryPattern
impl PartialOrd for BoundaryPattern
Source§impl Serialize for BoundaryPattern
impl Serialize for BoundaryPattern
impl Eq for BoundaryPattern
impl StructuralPartialEq for BoundaryPattern
Auto Trait Implementations§
impl Freeze for BoundaryPattern
impl RefUnwindSafe for BoundaryPattern
impl Send for BoundaryPattern
impl Sync for BoundaryPattern
impl Unpin for BoundaryPattern
impl UnsafeUnpin for BoundaryPattern
impl UnwindSafe for BoundaryPattern
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