pub struct PhaseMarkerView {
pub start_ms: u32,
pub end_ms: u32,
pub key: String,
}Expand description
Named phase boundary in the fight timeline.
Fields§
§start_ms: u32§end_ms: u32§key: StringTrait Implementations§
Source§impl Clone for PhaseMarkerView
impl Clone for PhaseMarkerView
Source§fn clone(&self) -> PhaseMarkerView
fn clone(&self) -> PhaseMarkerView
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 PhaseMarkerView
impl Debug for PhaseMarkerView
Source§impl Serialize for PhaseMarkerView
impl Serialize for PhaseMarkerView
Source§impl Tsify for PhaseMarkerView
impl Tsify for PhaseMarkerView
const DECL: &'static str = "/**\n * Named phase boundary in the fight timeline.\n */\nexport interface PhaseMarkerView {\n start_ms: number;\n end_ms: number;\n key: string;\n}"
const SERIALIZATION_CONFIG: SerializationConfig
type JsType = JsType
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
Auto Trait Implementations§
impl Freeze for PhaseMarkerView
impl RefUnwindSafe for PhaseMarkerView
impl Send for PhaseMarkerView
impl Sync for PhaseMarkerView
impl Unpin for PhaseMarkerView
impl UnsafeUnpin for PhaseMarkerView
impl UnwindSafe for PhaseMarkerView
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