pub enum ApplVerId {
Fix27,
Fix30,
Fix40,
Fix41,
Fix42,
Fix43,
Fix44,
Fix50,
Fix50sp1,
Fix50sp2,
}Expand description
Field type variants for ApplVerId.
Variants§
Fix27
Field variant ‘0’.
Fix30
Field variant ‘1’.
Fix40
Field variant ‘2’.
Fix41
Field variant ‘3’.
Fix42
Field variant ‘4’.
Fix43
Field variant ‘5’.
Fix44
Field variant ‘6’.
Fix50
Field variant ‘7’.
Fix50sp1
Field variant ‘8’.
Fix50sp2
Field variant ‘9’.
Trait Implementations§
Source§impl<'a> FieldType<'a> for ApplVerId
impl<'a> FieldType<'a> for ApplVerId
Source§type SerializeSettings = ()
type SerializeSettings = ()
A type with values that customize the serialization algorithm, e.g.
padding information.
Source§fn serialize_with<B>(
&self,
buffer: &mut B,
_settings: Self::SerializeSettings,
) -> usizewhere
B: Buffer,
fn serialize_with<B>(
&self,
buffer: &mut B,
_settings: Self::SerializeSettings,
) -> usizewhere
B: Buffer,
Writes
self to buffer using custom serialization settings.Source§fn deserialize(data: &'a [u8]) -> Result<Self, <Self as FieldType<'a>>::Error>
fn deserialize(data: &'a [u8]) -> Result<Self, <Self as FieldType<'a>>::Error>
Parses and deserializes from
data.Source§fn serialize<B>(&self, buffer: &mut B) -> usizewhere
B: Buffer,
fn serialize<B>(&self, buffer: &mut B) -> usizewhere
B: Buffer,
Writes
self to buffer using default settings.Source§fn deserialize_lossy(data: &'a [u8]) -> Result<Self, Self::Error>
fn deserialize_lossy(data: &'a [u8]) -> Result<Self, Self::Error>
Like
FieldType::deserialize, but it’s allowed to skip some amount of
input checking. Invalid inputs might not trigger errors and instead be
deserialized as random values. Read moreimpl Copy for ApplVerId
impl Eq for ApplVerId
impl StructuralPartialEq for ApplVerId
Auto Trait Implementations§
impl Freeze for ApplVerId
impl RefUnwindSafe for ApplVerId
impl Send for ApplVerId
impl Sync for ApplVerId
impl Unpin for ApplVerId
impl UnwindSafe for ApplVerId
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.