pub struct SetOutputDelay {Show 13 fields
pub clock: Option<Object>,
pub reference_pin: Option<Object>,
pub clock_fall: bool,
pub level_sensitive: bool,
pub rise: bool,
pub fall: bool,
pub max: bool,
pub min: bool,
pub add_delay: bool,
pub network_latency_included: bool,
pub source_latency_included: bool,
pub delay_value: f64,
pub port_pin_list: Object,
}Expand description
A type containing information of set_output_delay
Fields§
§clock: Option<Object>§reference_pin: Option<Object>§clock_fall: bool§level_sensitive: bool§rise: bool§fall: bool§max: bool§min: bool§add_delay: bool§network_latency_included: bool§source_latency_included: bool§delay_value: f64§port_pin_list: ObjectTrait Implementations§
Source§impl Clone for SetOutputDelay
impl Clone for SetOutputDelay
Source§fn clone(&self) -> SetOutputDelay
fn clone(&self) -> SetOutputDelay
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 SetOutputDelay
impl Debug for SetOutputDelay
Source§impl Default for SetOutputDelay
impl Default for SetOutputDelay
Source§fn default() -> SetOutputDelay
fn default() -> SetOutputDelay
Returns the “default value” for a type. Read more
Source§impl Display for SetOutputDelay
impl Display for SetOutputDelay
Source§impl PartialEq for SetOutputDelay
impl PartialEq for SetOutputDelay
impl StructuralPartialEq for SetOutputDelay
Auto Trait Implementations§
impl Freeze for SetOutputDelay
impl RefUnwindSafe for SetOutputDelay
impl Send for SetOutputDelay
impl Sync for SetOutputDelay
impl Unpin for SetOutputDelay
impl UnwindSafe for SetOutputDelay
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