Struct roblox::instance::RbxAnalyticsService [−][src]
pub struct RbxAnalyticsService<'a> {}Show 13 fields
pub archivable: bool, pub class_name: &'a str, pub name: &'a str, pub parent: Option<InstanceRef>, pub roblox_locked: bool, pub source_asset_id: i64, pub ancestry_changed: RBXScriptSignal<(Option<InstanceRef>, Option<InstanceRef>)>, pub attribute_changed: RBXScriptSignal<&'a str>, pub changed: RBXScriptSignal<&'a str>, pub child_added: RBXScriptSignal<Option<InstanceRef>>, pub child_removed: RBXScriptSignal<Option<InstanceRef>>, pub descendant_added: RBXScriptSignal<Option<InstanceRef>>, pub descendant_removing: RBXScriptSignal<Option<InstanceRef>>,
Expand description
The RbxAnalyticsService Instance Class
Fields
archivable: bool
Inherited from Instance
class_name: &'a str
Inherited from Instance
name: &'a str
Inherited from Instance
parent: Option<InstanceRef>
Inherited from Instance
roblox_locked: bool
Inherited from Instance
source_asset_id: i64
Inherited from Instance
ancestry_changed: RBXScriptSignal<(Option<InstanceRef>, Option<InstanceRef>)>
Inherited from Instance
attribute_changed: RBXScriptSignal<&'a str>
Inherited from Instance
changed: RBXScriptSignal<&'a str>
Inherited from Instance
child_added: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
child_removed: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
descendant_added: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
descendant_removing: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
Implementations
pub fn report_influx_series(
&self,
series_name: &'a str,
points: Dictionary,
throttling_percentage: i32
)
pub fn report_to_diag_by_country_code(
&self,
feature_name: &'a str,
measure_name: &'a str,
seconds: f64
)
pub fn send_event_deferred(
&self,
target: &'a str,
event_context: &'a str,
event_name: &'a str,
additional_args: Dictionary
)
pub fn send_event_immediately(
&self,
target: &'a str,
event_context: &'a str,
event_name: &'a str,
additional_args: Dictionary
)
pub fn set_rbx_event(
&self,
target: &'a str,
event_context: &'a str,
event_name: &'a str,
additional_args: Dictionary
)
pub fn set_rbx_event_stream(
&self,
target: &'a str,
event_context: &'a str,
event_name: &'a str,
additional_args: Dictionary
)
pub fn track_event_with_args(
&self,
category: &'a str,
action: &'a str,
label: &'a str,
args: Dictionary,
value: i64
)
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
pub fn find_first_child_which_is_a(
&self,
class_name: &'a str,
recursive: bool
) -> Option<InstanceRef>
pub fn find_first_child_which_is_a(
&self,
class_name: &'a str,
recursive: bool
) -> Option<InstanceRef>
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> RefUnwindSafe for RbxAnalyticsService<'a>
impl<'a> Send for RbxAnalyticsService<'a>
impl<'a> Sync for RbxAnalyticsService<'a>
impl<'a> Unpin for RbxAnalyticsService<'a>
impl<'a> UnwindSafe for RbxAnalyticsService<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more