pub struct ReplayMetaWithHeaders {
pub replay_meta: ReplayMeta,
pub column_headers: NDArrayColumnHeaders,
}Expand description
A struct that contains both the metadata of a replay and the associated column headers.
§Fields
replay_meta: Contains metadata about aboxcars::Replay.column_headers: TheNDArrayColumnHeadersassociated with the data collected from the replay.
Fields§
§replay_meta: ReplayMeta§column_headers: NDArrayColumnHeadersImplementations§
Source§impl ReplayMetaWithHeaders
impl ReplayMetaWithHeaders
pub fn headers_vec(&self) -> Vec<String>
pub fn headers_vec_from<F>(&self, player_prefix_getter: F) -> Vec<String>
Trait Implementations§
Source§impl Clone for ReplayMetaWithHeaders
impl Clone for ReplayMetaWithHeaders
Source§fn clone(&self) -> ReplayMetaWithHeaders
fn clone(&self) -> ReplayMetaWithHeaders
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 moreSource§impl Debug for ReplayMetaWithHeaders
impl Debug for ReplayMetaWithHeaders
Source§impl PartialEq for ReplayMetaWithHeaders
impl PartialEq for ReplayMetaWithHeaders
Source§impl Serialize for ReplayMetaWithHeaders
impl Serialize for ReplayMetaWithHeaders
impl StructuralPartialEq for ReplayMetaWithHeaders
Auto Trait Implementations§
impl Freeze for ReplayMetaWithHeaders
impl RefUnwindSafe for ReplayMetaWithHeaders
impl Send for ReplayMetaWithHeaders
impl Sync for ReplayMetaWithHeaders
impl Unpin for ReplayMetaWithHeaders
impl UnwindSafe for ReplayMetaWithHeaders
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