pub struct ChunkTimelineMarker {
pub time_ms: u32,
pub sequence: u64,
pub kind: MarkerKind,
pub spell_or_aura_id: u32,
pub target: u32,
pub amount: u32,
pub is_crit: bool,
pub source: Option<ActorId>,
pub pull: Option<PullId>,
pub group: Option<GroupId>,
}Fields§
§time_ms: u32§sequence: u64§kind: MarkerKind§spell_or_aura_id: u32§target: u32§amount: u32§is_crit: bool§source: Option<ActorId>§pull: Option<PullId>§group: Option<GroupId>Trait Implementations§
Source§impl Clone for ChunkTimelineMarker
impl Clone for ChunkTimelineMarker
Source§fn clone(&self) -> ChunkTimelineMarker
fn clone(&self) -> ChunkTimelineMarker
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 ChunkTimelineMarker
impl Debug for ChunkTimelineMarker
Source§impl<'de> Deserialize<'de> for ChunkTimelineMarker
impl<'de> Deserialize<'de> for ChunkTimelineMarker
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 ChunkTimelineMarker
impl PartialEq for ChunkTimelineMarker
Source§impl Serialize for ChunkTimelineMarker
impl Serialize for ChunkTimelineMarker
impl StructuralPartialEq for ChunkTimelineMarker
Auto Trait Implementations§
impl Freeze for ChunkTimelineMarker
impl RefUnwindSafe for ChunkTimelineMarker
impl Send for ChunkTimelineMarker
impl Sync for ChunkTimelineMarker
impl Unpin for ChunkTimelineMarker
impl UnsafeUnpin for ChunkTimelineMarker
impl UnwindSafe for ChunkTimelineMarker
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