pub enum IntegerKeyword {
}Variants§
BeginData(usize)
The offset to the beginning of the DATA segment (FCS 1.0+)
EndData(usize)
The offset to the end of the DATA segment (FCS 1.0+)
BeginAnalysis(usize)
The offset to the beginning of the ANALYSIS segment (FCS 2.0+)
EndAnalysis(usize)
The offset to the end of the ANALYSIS segment (FCS 2.0+)
BeginText(usize)
The offset to the beginning of the TEXT segment (FCS 1.0+)
EndText(usize)
The offset to the end of the TEXT segment (FCS 1.0+)
PAR(usize)
The number of parameters in the dataset (FCS 1.0+)
TOT(usize)
The number of events in the dataset (FCS 1.0+)
PnR(usize)
Range for parameter n (FCS 1.0+)
PnB(usize)
Number of bits reserved for parameter n (FCS 1.0+)
PnV(usize)
Voltage range for parameter n (FCS 1.0+)
PnL(usize)
Excitation wavelength for parameter n (FCS 1.0+)
PnDisplay(usize)
The transformation to apply when displaying the data (FCS 1.0+)
Trait Implementations§
Source§impl Clone for IntegerKeyword
impl Clone for IntegerKeyword
Source§fn clone(&self) -> IntegerKeyword
fn clone(&self) -> IntegerKeyword
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 IntegerKeyword
impl Debug for IntegerKeyword
Source§impl<'de> Deserialize<'de> for IntegerKeyword
impl<'de> Deserialize<'de> for IntegerKeyword
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for IntegerKeyword
impl Display for IntegerKeyword
Source§impl From<&IntegerKeyword> for String
impl From<&IntegerKeyword> for String
Source§fn from(keyword: &IntegerKeyword) -> Self
fn from(keyword: &IntegerKeyword) -> Self
Converts to this type from the input type.
Source§impl Hash for IntegerKeyword
impl Hash for IntegerKeyword
Source§impl IntegerableKeyword for IntegerKeyword
impl IntegerableKeyword for IntegerKeyword
Source§impl PartialEq for IntegerKeyword
impl PartialEq for IntegerKeyword
Source§impl Serialize for IntegerKeyword
impl Serialize for IntegerKeyword
Source§impl StringableKeyword for IntegerKeyword
impl StringableKeyword for IntegerKeyword
impl Eq for IntegerKeyword
impl StructuralPartialEq for IntegerKeyword
Auto Trait Implementations§
impl Freeze for IntegerKeyword
impl RefUnwindSafe for IntegerKeyword
impl Send for IntegerKeyword
impl Sync for IntegerKeyword
impl Unpin for IntegerKeyword
impl UnsafeUnpin for IntegerKeyword
impl UnwindSafe for IntegerKeyword
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> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 moreSource§impl<T> Key for Twhere
T: Clone,
impl<T> Key for Twhere
T: Clone,
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read moreSource§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.