pub struct SetDrivingCell {Show 16 fields
pub lib_cell: Option<Object>,
pub rise: bool,
pub fall: bool,
pub min: bool,
pub max: bool,
pub library: Option<Object>,
pub pin: Option<Object>,
pub from_pin: Option<Object>,
pub dont_scale: bool,
pub no_design_rule: bool,
pub clock: Option<Object>,
pub clock_fall: bool,
pub input_transition_rise: Option<f64>,
pub input_transition_fall: Option<f64>,
pub multiply_by: Option<f64>,
pub port_list: Object,
}Expand description
A type containing information of set_driving_cell
Fields§
§lib_cell: Option<Object>§rise: bool§fall: bool§min: bool§max: bool§library: Option<Object>§pin: Option<Object>§from_pin: Option<Object>§dont_scale: bool§no_design_rule: bool§clock: Option<Object>§clock_fall: bool§input_transition_rise: Option<f64>§input_transition_fall: Option<f64>§multiply_by: Option<f64>§port_list: ObjectTrait Implementations§
Source§impl Clone for SetDrivingCell
impl Clone for SetDrivingCell
Source§fn clone(&self) -> SetDrivingCell
fn clone(&self) -> SetDrivingCell
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 SetDrivingCell
impl Debug for SetDrivingCell
Source§impl Default for SetDrivingCell
impl Default for SetDrivingCell
Source§fn default() -> SetDrivingCell
fn default() -> SetDrivingCell
Returns the “default value” for a type. Read more
Source§impl Display for SetDrivingCell
impl Display for SetDrivingCell
Source§impl PartialEq for SetDrivingCell
impl PartialEq for SetDrivingCell
impl StructuralPartialEq for SetDrivingCell
Auto Trait Implementations§
impl Freeze for SetDrivingCell
impl RefUnwindSafe for SetDrivingCell
impl Send for SetDrivingCell
impl Sync for SetDrivingCell
impl Unpin for SetDrivingCell
impl UnwindSafe for SetDrivingCell
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