struct EnrichedOutput {
enriched: EnrichedLoadout,
version: u8,
tree_hash: String,
bitstream_position_count: usize,
tree_position_count: usize,
mapped_position_count: usize,
selected_node_count: usize,
selected_entry_count: usize,
trait_entries: Vec<DecodedTalentEntry>,
}Fields§
§enriched: EnrichedLoadout§version: u8§tree_hash: String§bitstream_position_count: usize§tree_position_count: usize§mapped_position_count: usize§selected_node_count: usize§selected_entry_count: usize§trait_entries: Vec<DecodedTalentEntry>Trait Implementations§
Auto Trait Implementations§
impl Freeze for EnrichedOutput
impl RefUnwindSafe for EnrichedOutput
impl Send for EnrichedOutput
impl Sync for EnrichedOutput
impl Unpin for EnrichedOutput
impl UnsafeUnpin for EnrichedOutput
impl UnwindSafe for EnrichedOutput
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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