pub struct ChunkTimeline {
pub duration_ms: u32,
pub bucket_ms: u32,
pub dps_per_bucket: Vec<u32>,
pub markers: Vec<ChunkTimelineMarker>,
pub aura_windows: Vec<ChunkAuraWindow>,
pub cooldown_windows: Vec<ChunkCooldownWindow>,
}Expand description
From one representative iteration, not aggregated.
Fields§
§duration_ms: u32§bucket_ms: u32§dps_per_bucket: Vec<u32>§markers: Vec<ChunkTimelineMarker>§aura_windows: Vec<ChunkAuraWindow>§cooldown_windows: Vec<ChunkCooldownWindow>Trait Implementations§
Source§impl Clone for ChunkTimeline
impl Clone for ChunkTimeline
Source§fn clone(&self) -> ChunkTimeline
fn clone(&self) -> ChunkTimeline
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 ChunkTimeline
impl Debug for ChunkTimeline
Source§impl Default for ChunkTimeline
impl Default for ChunkTimeline
Source§fn default() -> ChunkTimeline
fn default() -> ChunkTimeline
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChunkTimeline
impl<'de> Deserialize<'de> for ChunkTimeline
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ChunkTimeline
impl PartialEq for ChunkTimeline
Source§impl Serialize for ChunkTimeline
impl Serialize for ChunkTimeline
impl StructuralPartialEq for ChunkTimeline
Auto Trait Implementations§
impl Freeze for ChunkTimeline
impl RefUnwindSafe for ChunkTimeline
impl Send for ChunkTimeline
impl Sync for ChunkTimeline
impl Unpin for ChunkTimeline
impl UnsafeUnpin for ChunkTimeline
impl UnwindSafe for ChunkTimeline
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