[][src]Struct mcproto_rs::v1_16_3::EntityMetadata

pub struct EntityMetadata {
    pub fields: Vec<EntityMetadataField>,
}

Fields

fields: Vec<EntityMetadataField>

Implementations

impl EntityMetadata[src]

pub fn set(&mut self, index: u8, data: EntityMetadataFieldData)[src]

pub fn remove(&mut self, index: u8) -> bool[src]

pub fn get(&self, index: u8) -> Option<&EntityMetadataFieldData>[src]

pub fn get_mut(&mut self, index: u8) -> Option<&mut EntityMetadataFieldData>[src]

Trait Implementations

impl Clone for EntityMetadata[src]

impl Debug for EntityMetadata[src]

impl Default for EntityMetadata[src]

impl Deserialize for EntityMetadata[src]

impl<'a> IntoIterator for &'a EntityMetadata[src]

type Item = (u8, &'a EntityMetadataFieldData)

The type of the elements being iterated over.

type IntoIter = FieldIter<'a>

Which kind of iterator are we turning this into?

impl PartialEq<EntityMetadata> for EntityMetadata[src]

impl Serialize for EntityMetadata[src]

impl StructuralPartialEq for EntityMetadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ProtocolType for T where
    T: Deserialize + Serialize
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,