pub struct SetClockUncertainty {
pub from: Option<Object>,
pub rise_from: Option<Object>,
pub fall_from: Option<Object>,
pub to: Option<Object>,
pub rise_to: Option<Object>,
pub fall_to: Option<Object>,
pub rise: bool,
pub fall: bool,
pub setup: bool,
pub hold: bool,
pub uncertainty: f64,
pub object_list: Option<Object>,
}Expand description
A type containing information of set_clock_uncertainty
Fields§
§from: Option<Object>§rise_from: Option<Object>§fall_from: Option<Object>§to: Option<Object>§rise_to: Option<Object>§fall_to: Option<Object>§rise: bool§fall: bool§setup: bool§hold: bool§uncertainty: f64§object_list: Option<Object>Trait Implementations§
Source§impl Clone for SetClockUncertainty
impl Clone for SetClockUncertainty
Source§fn clone(&self) -> SetClockUncertainty
fn clone(&self) -> SetClockUncertainty
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 SetClockUncertainty
impl Debug for SetClockUncertainty
Source§impl Default for SetClockUncertainty
impl Default for SetClockUncertainty
Source§fn default() -> SetClockUncertainty
fn default() -> SetClockUncertainty
Returns the “default value” for a type. Read more
Source§impl Display for SetClockUncertainty
impl Display for SetClockUncertainty
Source§impl PartialEq for SetClockUncertainty
impl PartialEq for SetClockUncertainty
impl StructuralPartialEq for SetClockUncertainty
Auto Trait Implementations§
impl Freeze for SetClockUncertainty
impl RefUnwindSafe for SetClockUncertainty
impl Send for SetClockUncertainty
impl Sync for SetClockUncertainty
impl Unpin for SetClockUncertainty
impl UnwindSafe for SetClockUncertainty
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