pub struct NiFloatsExtraData {
pub name: NiString,
pub num_floats: u32,
pub data: Vec<f32>,
}Fields§
§name: NiString§num_floats: u32§data: Vec<f32>Implementations§
Trait Implementations§
Source§impl BinRead for NiFloatsExtraData
impl BinRead for NiFloatsExtraData
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: 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 Debug for NiFloatsExtraData
impl Debug for NiFloatsExtraData
Source§impl PartialEq for NiFloatsExtraData
impl PartialEq for NiFloatsExtraData
impl StructuralPartialEq for NiFloatsExtraData
Auto Trait Implementations§
impl Freeze for NiFloatsExtraData
impl RefUnwindSafe for NiFloatsExtraData
impl Send for NiFloatsExtraData
impl Sync for NiFloatsExtraData
impl Unpin for NiFloatsExtraData
impl UnwindSafe for NiFloatsExtraData
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