pub struct NiTimeController {
pub next_controller_ref: BlockRef,
pub flags: u16,
pub frequency: f32,
pub phase: f32,
pub start_time: f32,
pub end_time: f32,
pub target_ref: BlockRef,
}Fields§
§next_controller_ref: BlockRef§flags: u16§frequency: f32§phase: f32§start_time: f32§end_time: f32§target_ref: BlockRefImplementations§
Trait Implementations§
Source§impl BinRead for NiTimeController
impl BinRead for NiTimeController
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 NiTimeController
impl Debug for NiTimeController
Source§impl PartialEq for NiTimeController
impl PartialEq for NiTimeController
impl StructuralPartialEq for NiTimeController
Auto Trait Implementations§
impl Freeze for NiTimeController
impl RefUnwindSafe for NiTimeController
impl Send for NiTimeController
impl Sync for NiTimeController
impl Unpin for NiTimeController
impl UnwindSafe for NiTimeController
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