pub struct Node {
pub selector: u32,
pub pass_count: u32,
pub pass_indices: [u8; 16],
pub system_keys: Vec<u32>,
pub scene_keys: Vec<u32>,
pub material_keys: Vec<u32>,
pub subview_keys: Vec<u32>,
pub passes: Vec<Pass>,
}
Fields§
§selector: u32
§pass_count: u32
§pass_indices: [u8; 16]
§system_keys: Vec<u32>
§scene_keys: Vec<u32>
§material_keys: Vec<u32>
§subview_keys: Vec<u32>
§passes: Vec<Pass>
Trait Implementations§
source§impl BinRead for Node
impl BinRead for Node
§type Args<'__binrw_generated_args_lifetime> = NodeBinReadArgs
type Args<'__binrw_generated_args_lifetime> = NodeBinReadArgs
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>
§fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self
from the reader using the given arguments. Read more§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 more§fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self
from the reader, assuming little-endian byte order, using
the given arguments. Read moreAuto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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