Enum List

Source
pub enum List {
Show 13 variants Empty, Byte(Vec<i8>), Short(Vec<i16>), Int(Vec<i32>), Long(Vec<i64>), Float(Vec<f32>), Double(Vec<f64>), ByteArray(Vec<Vec<i8>>), String(Vec<String>), List(Vec<List>), Compound(Vec<Compound>), IntArray(Vec<Vec<i32>>), LongArray(Vec<Vec<i64>>),
}
Available on crate feature nbt only.
Expand description

Represents any NBT List, implements serde::Serialize and serde::Deserialize

Variants§

§

Empty

A generic length zero list, isn’t bounded by any type

§

Byte(Vec<i8>)

A list of nameless byte tags

§

Short(Vec<i16>)

A list of nameless short tags

§

Int(Vec<i32>)

A list of nameless int tags

§

Long(Vec<i64>)

A list of nameless long tags

§

Float(Vec<f32>)

A list of nameless float tags

§

Double(Vec<f64>)

A list of nameless double tags

§

ByteArray(Vec<Vec<i8>>)

A list of nameless byte array tags

§

String(Vec<String>)

A list of nameless string tags

§

List(Vec<List>)

A list of nameless list tags, each list can hold a different type of tag

§

Compound(Vec<Compound>)

A list of nameless compound tags

§

IntArray(Vec<Vec<i32>>)

A list of nameless int array tags

§

LongArray(Vec<Vec<i64>>)

A list of nameless long array tags

Implementations§

Source§

impl List

Source

pub fn tag_type(&self) -> TagType

Trait Implementations§

Source§

impl Clone for List

Source§

fn clone(&self) -> List

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<'a> CompoundTryGetInto<&'a List> for &'a Compound

Source§

impl<'a> CompoundTryGetInto<&'a mut List> for &'a mut Compound

Source§

impl Debug for List

Source§

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

Formats the value using the given formatter. Read more
Source§

impl PartialEq for List

Source§

fn eq(&self, other: &List) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for List

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl<'a> TryInto<&'a [HashMap<String, Tag>]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [Compound], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [List]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [List], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [String]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [String], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [f32]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [f32], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [f64]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [f64], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [i16]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [i16], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [i32]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [i32], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [i64]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [i64], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a [i8]> for &'a List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a [i8], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a List> for &'a Tag

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a List, TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [HashMap<String, Tag>]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [Compound], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [List]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [List], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [String]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [String], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [f32]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [f32], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [f64]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [f64], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [i16]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [i16], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [i32]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [i32], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [i64]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [i64], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut [i8]> for &'a mut List

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut [i8], TagConversionError<'a>>

Performs the conversion.
Source§

impl<'a> TryInto<&'a mut List> for &'a mut Tag

Source§

type Error = TagConversionError<'a>

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

fn try_into(self) -> Result<&'a mut List, TagConversionError<'a>>

Performs the conversion.
Source§

impl StructuralPartialEq for List

Auto Trait Implementations§

§

impl Freeze for List

§

impl RefUnwindSafe for List

§

impl Send for List

§

impl Sync for List

§

impl Unpin for List

§

impl UnwindSafe for List

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.