pub struct WireProperty {
pub name: String,
pub value: String,
}Expand description
A single property entry on the wire. Both fields are UTF-8 strings without an inner null byte (spec constraint of the CDR string type).
Fields§
§name: StringName (reverse-DNS convention, e.g. dds.sec.auth.plugin_class).
value: StringValue (opaque 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
impl Eq for WireProperty
Source§impl PartialEq for WireProperty
impl PartialEq 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