pub enum ServiceDescriptor {
PublishSubscribe(String),
Event(String),
RequestResponse(String),
Undefined(String),
}Variants§
Trait Implementations§
Source§impl Debug for ServiceDescriptor
impl Debug for ServiceDescriptor
Source§impl<T> From<&ServiceDetails<T>> for ServiceDescriptorwhere
T: IceoryxService,
impl<T> From<&ServiceDetails<T>> for ServiceDescriptorwhere
T: IceoryxService,
Source§fn from(service: &IceoryxServiceDetails<T>) -> Self
fn from(service: &IceoryxServiceDetails<T>) -> Self
Converts to this type from the input type.
Source§impl Ord for ServiceDescriptor
impl Ord for ServiceDescriptor
Source§fn cmp(&self, other: &ServiceDescriptor) -> Ordering
fn cmp(&self, other: &ServiceDescriptor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ServiceDescriptor
impl PartialEq for ServiceDescriptor
Source§impl PartialOrd for ServiceDescriptor
impl PartialOrd for ServiceDescriptor
Source§impl Serialize for ServiceDescriptor
impl Serialize for ServiceDescriptor
impl Eq for ServiceDescriptor
impl StructuralPartialEq for ServiceDescriptor
Auto Trait Implementations§
impl Freeze for ServiceDescriptor
impl RefUnwindSafe for ServiceDescriptor
impl Send for ServiceDescriptor
impl Sync for ServiceDescriptor
impl Unpin for ServiceDescriptor
impl UnwindSafe for ServiceDescriptor
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
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.