pub struct PacketEntityData {
pub max_entries: Option<u64>,
pub updated_entries: Option<u64>,
pub is_delta: Option<u64>,
pub update_baseline: Option<u64>,
pub baseline: Option<u64>,
pub delta_from: Option<u64>,
pub entity_data: Option<Vec<u8>>,
}
Fields§
§max_entries: Option<u64>
§updated_entries: Option<u64>
§is_delta: Option<u64>
§update_baseline: Option<u64>
§baseline: Option<u64>
§delta_from: Option<u64>
§entity_data: Option<Vec<u8>>
Implementations§
Source§impl PacketEntityData
impl PacketEntityData
pub fn to_vec(&self) -> Vec<(&'static str, ProtobufValue)>
Trait Implementations§
Source§impl Clone for PacketEntityData
impl Clone for PacketEntityData
Source§fn clone(&self) -> PacketEntityData
fn clone(&self) -> PacketEntityData
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 moreAuto Trait Implementations§
impl Freeze for PacketEntityData
impl RefUnwindSafe for PacketEntityData
impl Send for PacketEntityData
impl Sync for PacketEntityData
impl Unpin for PacketEntityData
impl UnwindSafe for PacketEntityData
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