Struct rustdds::dds::data_types::GuidPrefix[][src]

pub struct GuidPrefix {
    pub entityKey: [u8; 12],
}

DDS/RTPS Participant GuidPrefix

Fields

entityKey: [u8; 12]

Implementations

impl GuidPrefix[src]

pub const GUIDPREFIX_UNKNOWN: GuidPrefix[src]

pub fn new(prefix: &[u8]) -> GuidPrefix[src]

pub fn range(&self) -> impl RangeBounds<GUID>[src]

Trait Implementations

impl Clone for GuidPrefix[src]

impl Copy for GuidPrefix[src]

impl Debug for GuidPrefix[src]

impl Default for GuidPrefix[src]

impl<'de> Deserialize<'de> for GuidPrefix[src]

impl Eq for GuidPrefix[src]

impl Hash for GuidPrefix[src]

impl Ord for GuidPrefix[src]

impl PartialEq<GuidPrefix> for GuidPrefix[src]

impl PartialOrd<GuidPrefix> for GuidPrefix[src]

impl<'a, C: Context> Readable<'a, C> for GuidPrefix[src]

impl Serialize for GuidPrefix[src]

impl StructuralEq for GuidPrefix[src]

impl StructuralPartialEq for GuidPrefix[src]

impl<C: Context> Writable<C> for GuidPrefix[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,