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