pub struct BuiltInTopicKey {
pub value: [u8; 16],
}Expand description
Structure representing the instance handle (or key) of an entity.
Fields§
§value: [u8; 16]InstanceHandle value as an array of 16 octets.
Trait Implementations§
Source§impl Clone for BuiltInTopicKey
impl Clone for BuiltInTopicKey
Source§fn clone(&self) -> BuiltInTopicKey
fn clone(&self) -> BuiltInTopicKey
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 BuiltInTopicKey
impl Debug for BuiltInTopicKey
Source§impl Default for BuiltInTopicKey
impl Default for BuiltInTopicKey
Source§fn default() -> BuiltInTopicKey
fn default() -> BuiltInTopicKey
Returns the “default value” for a type. Read more
Source§impl PartialEq for BuiltInTopicKey
impl PartialEq for BuiltInTopicKey
Source§impl TypeSupport for BuiltInTopicKey
impl TypeSupport for BuiltInTopicKey
Source§fn get_type() -> DynamicType
fn get_type() -> DynamicType
This operation returns a [‘DynamicType’] object corresponding to the TypeSupport’s data type
Source§fn create_sample(src: DynamicData) -> Self
fn create_sample(src: DynamicData) -> Self
Create a sample of the TypeSupport’s data type with the contents of an input DynamicData object.
Source§fn create_dynamic_sample(self) -> DynamicData
fn create_dynamic_sample(self) -> DynamicData
Create a ‘DynamicData’ object with the contents of an input sample of the TypeSupport’s data type.
Source§fn get_type_name() -> &'static str
fn get_type_name() -> &'static str
This operation returns the default name for the data-type represented by the TypeSupport.
impl Eq for BuiltInTopicKey
impl StructuralPartialEq for BuiltInTopicKey
Auto Trait Implementations§
impl Freeze for BuiltInTopicKey
impl RefUnwindSafe for BuiltInTopicKey
impl Send for BuiltInTopicKey
impl Sync for BuiltInTopicKey
impl Unpin for BuiltInTopicKey
impl UnwindSafe for BuiltInTopicKey
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