pub struct LE<T>(pub T);
Expand description
Tuple Fields§
§0: T
Implementations§
Trait Implementations§
Source§impl<T: Ord> Ord for LE<T>
impl<T: Ord> Ord for LE<T>
Source§impl<T: PartialOrd> PartialOrd for LE<T>
impl<T: PartialOrd> PartialOrd for LE<T>
Source§impl Writer for LE<f32>
impl Writer for LE<f32>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<f64>
impl Writer for LE<f64>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<i128>
impl Writer for LE<i128>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<i16>
impl Writer for LE<i16>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<i24>
impl Writer for LE<i24>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<i32>
impl Writer for LE<i32>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<i64>
impl Writer for LE<i64>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<u128>
impl Writer for LE<u128>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<u16>
impl Writer for LE<u16>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<u24>
impl Writer for LE<u24>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<u32>
impl Writer for LE<u32>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.Source§impl Writer for LE<u64>
impl Writer for LE<u64>
Source§fn write_to_bytes(&self) -> Result<ByteWriter, Error>
fn write_to_bytes(&self) -> Result<ByteWriter, Error>
This is a utility function to write
Self
to a ByteWriter
without
needing to create a ByteWriter
first.impl<T: Copy> Copy for LE<T>
impl<T: Eq> Eq for LE<T>
impl<T> StructuralPartialEq for LE<T>
Auto Trait Implementations§
impl<T> Freeze for LE<T>where
T: Freeze,
impl<T> RefUnwindSafe for LE<T>where
T: RefUnwindSafe,
impl<T> Send for LE<T>where
T: Send,
impl<T> Sync for LE<T>where
T: Sync,
impl<T> Unpin for LE<T>where
T: Unpin,
impl<T> UnwindSafe for LE<T>where
T: UnwindSafe,
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