pub struct CString<const N: usize>(/* private fields */);Expand description
A null terminated string with a specified alignment.
The empty string is represented as N null bytes.
Implementations§
Trait Implementations§
Source§impl<const N: usize> BinRead for CString<N>
impl<const N: usize> BinRead for CString<N>
Source§fn read_options<R: Read + Seek>(
reader: &mut R,
_endian: Endian,
_args: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( reader: &mut R, _endian: Endian, _args: Self::Args<'_>, ) -> BinResult<Self>
Source§fn read_be<R>(reader: &mut R) -> Result<Self, Error>
fn read_be<R>(reader: &mut R) -> Result<Self, Error>
Read
Self from the reader using default arguments and assuming
big-endian byte order. Read moreSource§fn read_le<R>(reader: &mut R) -> Result<Self, Error>
fn read_le<R>(reader: &mut R) -> Result<Self, Error>
Read
Self from the reader using default arguments and assuming
little-endian byte order. Read moreSource§fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
Read
T from the reader assuming native-endian byte order. Read moreSource§fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader, assuming big-endian byte order, using the
given arguments. Read moreSource§impl<const N: usize> SsbhWrite for CString<N>
impl<const N: usize> SsbhWrite for CString<N>
Source§fn ssbh_write<W: Write + Seek>(
&self,
writer: &mut W,
_data_ptr: &mut u64,
) -> Result<()>
fn ssbh_write<W: Write + Seek>( &self, writer: &mut W, _data_ptr: &mut u64, ) -> Result<()>
Writes the byte representation of
self to writer.
data_ptr is assumed to be the absolute offset where the next data stored behind an offset will be written.
Struct that contains no offsets as fields can skip updating data_ptr. Read moreSource§fn size_in_bytes(&self) -> u64
fn size_in_bytes(&self) -> u64
The offset in bytes between successive elements in an array of this type.
This should include any alignment or padding.
Source§fn alignment_in_bytes() -> u64
fn alignment_in_bytes() -> u64
The alignment for pointers of this type, which is useful for offset calculations.
impl<const N: usize> Eq for CString<N>
impl<const N: usize> StructuralPartialEq for CString<N>
Auto Trait Implementations§
impl<const N: usize> Freeze for CString<N>
impl<const N: usize> RefUnwindSafe for CString<N>
impl<const N: usize> Send for CString<N>
impl<const N: usize> Sync for CString<N>
impl<const N: usize> Unpin for CString<N>
impl<const N: usize> UnwindSafe for CString<N>
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