pub struct WireProperty {
pub name: String,
pub value: String,
}Expand description
Ein einzelner Property-Eintrag auf dem Wire. Beide Felder sind UTF-8-Strings ohne inneren Null-Byte (Spec-Constraint des CDR-String-Typs).
Fields§
§name: StringName (reverse-DNS Convention, z.B. dds.sec.auth.plugin_class).
value: StringWert (opaker UTF-8-String).
Implementations§
Trait Implementations§
Source§impl Clone for WireProperty
impl Clone for WireProperty
Source§fn clone(&self) -> WireProperty
fn clone(&self) -> WireProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WireProperty
impl Debug for WireProperty
Source§impl Default for WireProperty
impl Default for WireProperty
Source§fn default() -> WireProperty
fn default() -> WireProperty
Returns the “default value” for a type. Read more
Source§impl PartialEq for WireProperty
impl PartialEq for WireProperty
Source§fn eq(&self, other: &WireProperty) -> bool
fn eq(&self, other: &WireProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WireProperty
impl StructuralPartialEq for WireProperty
Auto Trait Implementations§
impl Freeze for WireProperty
impl RefUnwindSafe for WireProperty
impl Send for WireProperty
impl Sync for WireProperty
impl Unpin for WireProperty
impl UnsafeUnpin for WireProperty
impl UnwindSafe for WireProperty
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