pub enum DataType {
Byte,
Word,
Longword,
Quadword,
Octoword,
Floating,
Double,
GFloating,
HFloating,
}
Expand description
§VAX Data Types
Variants§
Byte
The VAX Byte data type. Reads into a Rust i8 value.
Word
The VAX Word data type. Reads into a Rust i16 value.
Longword
The VAX Longword data type. Reads into a Rust i32 value.
Quadword
The VAX Quadword data type. Reads into a Rust i64 value.
Octoword
The VAX Octoword data type. Reads into a Rust i128 value.
Floating
The VAX Floating data type. Reads into a Rust FFloating value.
Double
The VAX Double data type. Reads into a Rust DFloating value.
GFloating
The VAX GFloating data type. Reads into a Rust GFloating value.
HFloating
The VAX HFloating data type. Reads into a Rust HFloating value.
Trait Implementations§
impl Copy for DataType
impl Eq for DataType
impl StructuralPartialEq for DataType
Auto Trait Implementations§
impl Freeze for DataType
impl RefUnwindSafe for DataType
impl Send for DataType
impl Sync for DataType
impl Unpin for DataType
impl UnwindSafe for DataType
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