pub struct IndexedDataResult {
pub index: u8,
pub data: Vec<u8>,
pub map_name_changed: Option<Vec<u8>>,
}
Fields§
§index: u8
§data: Vec<u8>
§map_name_changed: Option<Vec<u8>>
Implementations§
Source§impl IndexedDataResult
impl IndexedDataResult
pub fn new(index_data: &IndexedData) -> IndexedDataResult
Trait Implementations§
Source§impl Clone for IndexedDataResult
impl Clone for IndexedDataResult
Source§fn clone(&self) -> IndexedDataResult
fn clone(&self) -> IndexedDataResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for IndexedDataResult
impl RefUnwindSafe for IndexedDataResult
impl Send for IndexedDataResult
impl Sync for IndexedDataResult
impl Unpin for IndexedDataResult
impl UnwindSafe for IndexedDataResult
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