pub struct UnsignedAxis(/* private fields */);
Expand description
An unsigned axis, representing a positive or zero value.
Implementations§
Source§impl UnsignedAxis
impl UnsignedAxis
Trait Implementations§
Source§impl BinRead for UnsignedAxis
impl BinRead for UnsignedAxis
Source§type Args = ()
type Args = ()
The type of arguments needed to be supplied in order to read this type, usually a tuple. Read more
Source§fn read_options<R: Read + Seek>(
__binread_generated_var_reader: &mut R,
__binread_generated_var_options: &ReadOptions,
__binread_generated_var_arguments: Self::Args,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binread_generated_var_reader: &mut R, __binread_generated_var_options: &ReadOptions, __binread_generated_var_arguments: Self::Args, ) -> BinResult<Self>
Read the type from the reader
fn after_parse<R: Read + Seek>( &mut self, __binread_generated_var_reader: &mut R, __binread_generated_var_options: &ReadOptions, __binread_generated_var_arguments: Self::Args, ) -> BinResult<()>
Source§fn read<R>(reader: &mut R) -> Result<Self, Error>
fn read<R>(reader: &mut R) -> Result<Self, Error>
Read the type from the reader while assuming no arguments have been passed Read more
Source§impl Debug for UnsignedAxis
impl Debug for UnsignedAxis
Source§impl Default for UnsignedAxis
impl Default for UnsignedAxis
Source§fn default() -> UnsignedAxis
fn default() -> UnsignedAxis
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UnsignedAxis
impl RefUnwindSafe for UnsignedAxis
impl Send for UnsignedAxis
impl Sync for UnsignedAxis
impl Unpin for UnsignedAxis
impl UnwindSafe for UnsignedAxis
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