pub struct CreateGeneratedClock {Show 13 fields
pub name: Option<String>,
pub source: Object,
pub edges: Vec<f64>,
pub divide_by: Option<f64>,
pub multiply_by: Option<f64>,
pub duty_cycle: Option<f64>,
pub invert: bool,
pub edge_shift: Vec<f64>,
pub add: bool,
pub master_clock: Option<Object>,
pub combinational: bool,
pub comment: Option<String>,
pub source_objects: Object,
}Expand description
A type containing information of create_generated_clock
Fields§
§name: Option<String>§source: Object§edges: Vec<f64>§divide_by: Option<f64>§multiply_by: Option<f64>§duty_cycle: Option<f64>§invert: bool§edge_shift: Vec<f64>§add: bool§master_clock: Option<Object>§combinational: bool§comment: Option<String>§source_objects: ObjectTrait Implementations§
Source§impl Clone for CreateGeneratedClock
impl Clone for CreateGeneratedClock
Source§fn clone(&self) -> CreateGeneratedClock
fn clone(&self) -> CreateGeneratedClock
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 CreateGeneratedClock
impl Debug for CreateGeneratedClock
Source§impl Default for CreateGeneratedClock
impl Default for CreateGeneratedClock
Source§fn default() -> CreateGeneratedClock
fn default() -> CreateGeneratedClock
Returns the “default value” for a type. Read more
Source§impl Display for CreateGeneratedClock
impl Display for CreateGeneratedClock
Source§impl PartialEq for CreateGeneratedClock
impl PartialEq for CreateGeneratedClock
impl StructuralPartialEq for CreateGeneratedClock
Auto Trait Implementations§
impl Freeze for CreateGeneratedClock
impl RefUnwindSafe for CreateGeneratedClock
impl Send for CreateGeneratedClock
impl Sync for CreateGeneratedClock
impl Unpin for CreateGeneratedClock
impl UnwindSafe for CreateGeneratedClock
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