pub struct MapNodesBulk {
pub nodes: [MapNode; 4096],
}
Expand description
This has a special serialization, presumably to make it compress better. Each param is stored in a separate array.
Fields§
§nodes: [MapNode; 4096]
Trait Implementations§
Source§impl Clone for MapNodesBulk
impl Clone for MapNodesBulk
Source§fn clone(&self) -> MapNodesBulk
fn clone(&self) -> MapNodesBulk
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MapNodesBulk
impl Debug for MapNodesBulk
Source§impl Deserialize for MapNodesBulk
impl Deserialize for MapNodesBulk
Source§type Output = MapNodesBulk
type Output = MapNodesBulk
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for MapNodesBulk
impl PartialEq for MapNodesBulk
Source§impl Serialize for MapNodesBulk
impl Serialize for MapNodesBulk
type Input = MapNodesBulk
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for MapNodesBulk
Auto Trait Implementations§
impl Freeze for MapNodesBulk
impl RefUnwindSafe for MapNodesBulk
impl Send for MapNodesBulk
impl Sync for MapNodesBulk
impl Unpin for MapNodesBulk
impl UnwindSafe for MapNodesBulk
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