Skip to main content

SerializerField

Struct SerializerField 

Source
pub struct SerializerField {
    pub var_type: String,
    pub var_name: String,
    pub bit_count: Option<i32>,
    pub low_value: Option<f32>,
    pub high_value: Option<f32>,
    pub encode_flags: Option<i32>,
    pub field_serializer_name: Option<String>,
    pub send_node: Option<String>,
    pub var_encoder: Option<String>,
    pub field_serializer: Option<Arc<Serializer>>,
    pub field_type: FieldType,
    pub metadata: FieldMetadata,
}
Expand description

A single field within a serializer, describing one network property.

Fields§

§var_type: String

Source 2 type string (e.g. "float32", "CNetworkUtlVectorBase< int32 >").

§var_name: String

Field name (e.g. "m_iHealth").

§bit_count: Option<i32>

Bit width hint for quantized floats and QAngle.

§low_value: Option<f32>

Low end of quantized float range.

§high_value: Option<f32>

High end of quantized float range.

§encode_flags: Option<i32>

Quantized float encoding flags (see QFE_* constants).

§field_serializer_name: Option<String>

Name of a nested serializer (for composite / array fields).

§send_node: Option<String>

Dotted path prefix used by the entity field name resolution.

§var_encoder: Option<String>

Optional encoder hint (e.g. "coord", "normal", "fixed64").

§field_serializer: Option<Arc<Serializer>>

Resolved nested serializer (populated during SerializerContainer::parse).

§field_type: FieldType

Parsed type information.

§metadata: FieldMetadata

Resolved decoder and special descriptor.

Implementations§

Source§

impl SerializerField

Source

pub fn get_child(&self, index: usize) -> Option<&SerializerField>

Get a field from the nested serializer at index, if present.

Source

pub fn is_dynamic_array(&self) -> bool

Returns true if this field represents a variable-length array.

Trait Implementations§

Source§

impl Clone for SerializerField

Source§

fn clone(&self) -> SerializerField

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SerializerField

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.