pub struct EncounterEventView {Show 13 fields
pub kind: String,
pub time_ms: u32,
pub sequence: u64,
pub actor: String,
pub actor_id: u32,
pub previous_target_id: Option<u32>,
pub target_id: Option<u32>,
pub pull_id: u32,
pub group_id: Option<u32>,
pub x: Option<f64>,
pub y: Option<f64>,
pub heading: Option<f64>,
pub layer_id: Option<u32>,
}Expand description
Encounter lifecycle observation in its original causal sequence.
Fields§
§kind: String§time_ms: u32§sequence: u64§actor: String§actor_id: u32§previous_target_id: Option<u32>§target_id: Option<u32>§pull_id: u32§group_id: Option<u32>§x: Option<f64>§y: Option<f64>§heading: Option<f64>§layer_id: Option<u32>Trait Implementations§
Source§impl Clone for EncounterEventView
impl Clone for EncounterEventView
Source§fn clone(&self) -> EncounterEventView
fn clone(&self) -> EncounterEventView
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 EncounterEventView
impl Debug for EncounterEventView
Source§impl Serialize for EncounterEventView
impl Serialize for EncounterEventView
Source§impl Tsify for EncounterEventView
impl Tsify for EncounterEventView
const DECL: &'static str = "/**\n * Encounter lifecycle observation in its original causal sequence.\n */\nexport interface EncounterEventView {\n kind: string;\n time_ms: number;\n sequence: number;\n actor: string;\n actor_id: number;\n previous_target_id: number | undefined;\n target_id: number | undefined;\n pull_id: number;\n group_id: number | undefined;\n x: number | undefined;\n y: number | undefined;\n heading: number | undefined;\n layer_id: number | undefined;\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 EncounterEventView
impl RefUnwindSafe for EncounterEventView
impl Send for EncounterEventView
impl Sync for EncounterEventView
impl Unpin for EncounterEventView
impl UnsafeUnpin for EncounterEventView
impl UnwindSafe for EncounterEventView
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