pub enum TimescaleUnit {
S,
MS,
US,
NS,
PS,
FS,
}Expand description
A unit of time for the $timescale command.
Variants§
S
Second
MS
Millisecond (10^-3)
US
Microsecond (10^-6)
NS
Nanosecond (10^-9)
PS
Picosecond (10^-12)
FS
Femtosecond (10^-15)
Implementations§
Trait Implementations§
Source§impl Clone for TimescaleUnit
impl Clone for TimescaleUnit
Source§fn clone(&self) -> TimescaleUnit
fn clone(&self) -> TimescaleUnit
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 TimescaleUnit
impl Debug for TimescaleUnit
Source§impl Display for TimescaleUnit
impl Display for TimescaleUnit
Source§impl FromStr for TimescaleUnit
impl FromStr for TimescaleUnit
Source§impl PartialEq for TimescaleUnit
impl PartialEq for TimescaleUnit
impl Copy for TimescaleUnit
impl Eq for TimescaleUnit
impl StructuralPartialEq for TimescaleUnit
Auto Trait Implementations§
impl Freeze for TimescaleUnit
impl RefUnwindSafe for TimescaleUnit
impl Send for TimescaleUnit
impl Sync for TimescaleUnit
impl Unpin for TimescaleUnit
impl UnwindSafe for TimescaleUnit
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