Struct ScriptLanguageExtensionProfilingInfo
#[repr(C)]pub struct ScriptLanguageExtensionProfilingInfo {
pub signature: StringName,
pub call_count: u64,
pub total_time: u64,
pub self_time: u64,
}
Expand description
Fields§
§signature: StringName
§call_count: u64
§total_time: u64
§self_time: u64
Trait Implementations§
§impl Clone for ScriptLanguageExtensionProfilingInfo
impl Clone for ScriptLanguageExtensionProfilingInfo
§fn clone(&self) -> ScriptLanguageExtensionProfilingInfo
fn clone(&self) -> ScriptLanguageExtensionProfilingInfo
Returns a copy 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 more§impl PartialEq for ScriptLanguageExtensionProfilingInfo
impl PartialEq for ScriptLanguageExtensionProfilingInfo
§fn eq(&self, other: &ScriptLanguageExtensionProfilingInfo) -> bool
fn eq(&self, other: &ScriptLanguageExtensionProfilingInfo) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ScriptLanguageExtensionProfilingInfo
Auto Trait Implementations§
impl Freeze for ScriptLanguageExtensionProfilingInfo
impl RefUnwindSafe for ScriptLanguageExtensionProfilingInfo
impl Send for ScriptLanguageExtensionProfilingInfo
impl Sync for ScriptLanguageExtensionProfilingInfo
impl Unpin for ScriptLanguageExtensionProfilingInfo
impl UnwindSafe for ScriptLanguageExtensionProfilingInfo
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