pub struct PmmModelSlot {Show 15 fields
pub slot_index: usize,
pub display_slot_index: Option<usize>,
pub offset: usize,
pub offset_end: usize,
pub model_path_offset: usize,
pub trailing_zero_padding_bytes: usize,
pub next_non_zero_offset: Option<usize>,
pub name: String,
pub name_bytes: Vec<u8>,
pub english_name: String,
pub english_name_bytes: Vec<u8>,
pub model_path: String,
pub normalized_path: String,
pub asset_reference_index: Option<usize>,
pub confidence: &'static str,
}Fields§
§slot_index: usize§display_slot_index: Option<usize>§offset: usize§offset_end: usize§model_path_offset: usize§trailing_zero_padding_bytes: usize§next_non_zero_offset: Option<usize>§name: String§name_bytes: Vec<u8>§english_name: String§english_name_bytes: Vec<u8>§model_path: String§normalized_path: String§asset_reference_index: Option<usize>§confidence: &'static strTrait Implementations§
Source§impl Clone for PmmModelSlot
impl Clone for PmmModelSlot
Source§fn clone(&self) -> PmmModelSlot
fn clone(&self) -> PmmModelSlot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PmmModelSlot
impl Debug for PmmModelSlot
Auto Trait Implementations§
impl Freeze for PmmModelSlot
impl RefUnwindSafe for PmmModelSlot
impl Send for PmmModelSlot
impl Sync for PmmModelSlot
impl Unpin for PmmModelSlot
impl UnsafeUnpin for PmmModelSlot
impl UnwindSafe for PmmModelSlot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more