pub struct CreateVoltageArea {
pub name: String,
pub coordinate: Vec<f64>,
pub guard_band_x: Option<f64>,
pub guard_band_y: Option<f64>,
pub cell_list: Object,
}Expand description
A type containing information of create_voltage_area
Fields§
§name: String§coordinate: Vec<f64>§guard_band_x: Option<f64>§guard_band_y: Option<f64>§cell_list: ObjectTrait Implementations§
Source§impl Clone for CreateVoltageArea
impl Clone for CreateVoltageArea
Source§fn clone(&self) -> CreateVoltageArea
fn clone(&self) -> CreateVoltageArea
Returns a duplicate 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 CreateVoltageArea
impl Debug for CreateVoltageArea
Source§impl Default for CreateVoltageArea
impl Default for CreateVoltageArea
Source§fn default() -> CreateVoltageArea
fn default() -> CreateVoltageArea
Returns the “default value” for a type. Read more
Source§impl Display for CreateVoltageArea
impl Display for CreateVoltageArea
Source§impl PartialEq for CreateVoltageArea
impl PartialEq for CreateVoltageArea
impl StructuralPartialEq for CreateVoltageArea
Auto Trait Implementations§
impl Freeze for CreateVoltageArea
impl RefUnwindSafe for CreateVoltageArea
impl Send for CreateVoltageArea
impl Sync for CreateVoltageArea
impl Unpin for CreateVoltageArea
impl UnwindSafe for CreateVoltageArea
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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