pub struct NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count> { /* private fields */ }
Expand description

A builder for NodeBinReadArgs objects. Compatible with binrw::args!.

Implementations§

source§

impl<Field_scene_key_count, Field_material_key_count, Field_subview_key_count> NodeBinReadArgBuilder<Needed, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>

source

pub fn system_key_count( self, val: u32 ) -> NodeBinReadArgBuilder<Satisfied, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>

Sets system_key_count to the given value.

source§

impl<Field_system_key_count, Field_material_key_count, Field_subview_key_count> NodeBinReadArgBuilder<Field_system_key_count, Needed, Field_material_key_count, Field_subview_key_count>

source

pub fn scene_key_count( self, val: u32 ) -> NodeBinReadArgBuilder<Field_system_key_count, Satisfied, Field_material_key_count, Field_subview_key_count>

Sets scene_key_count to the given value.

source§

impl<Field_system_key_count, Field_scene_key_count, Field_subview_key_count> NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Needed, Field_subview_key_count>

source

pub fn material_key_count( self, val: u32 ) -> NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Satisfied, Field_subview_key_count>

Sets material_key_count to the given value.

source§

impl<Field_system_key_count, Field_scene_key_count, Field_material_key_count> NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Needed>

source

pub fn subview_key_count( self, val: u32 ) -> NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Satisfied>

Sets subview_key_count to the given value.

source§

impl<Field_system_key_count: SatisfiedOrOptional, Field_scene_key_count: SatisfiedOrOptional, Field_material_key_count: SatisfiedOrOptional, Field_subview_key_count: SatisfiedOrOptional> NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>

source

pub fn finalize(self) -> NodeBinReadArgs

Builds the object.

Auto Trait Implementations§

§

impl<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count> RefUnwindSafe for NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>
where Field_material_key_count: RefUnwindSafe, Field_scene_key_count: RefUnwindSafe, Field_subview_key_count: RefUnwindSafe, Field_system_key_count: RefUnwindSafe,

§

impl<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count> Send for NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>
where Field_material_key_count: Send, Field_scene_key_count: Send, Field_subview_key_count: Send, Field_system_key_count: Send,

§

impl<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count> Sync for NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>
where Field_material_key_count: Sync, Field_scene_key_count: Sync, Field_subview_key_count: Sync, Field_system_key_count: Sync,

§

impl<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count> Unpin for NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>
where Field_material_key_count: Unpin, Field_scene_key_count: Unpin, Field_subview_key_count: Unpin, Field_system_key_count: Unpin,

§

impl<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count> UnwindSafe for NodeBinReadArgBuilder<Field_system_key_count, Field_scene_key_count, Field_material_key_count, Field_subview_key_count>
where Field_material_key_count: UnwindSafe, Field_scene_key_count: UnwindSafe, Field_subview_key_count: UnwindSafe, Field_system_key_count: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more