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