pub struct Property {
pub name: Cow<'static, str>,
pub value: Cow<'static, str>,
pub propagate: bool,
}Expand description
A single property: name + value.
propagate=true is sent to remote participants via SEDP (e.g.
dds.sec.permissions_hash); false stays local (e.g.
dds.sec.auth.private_key_path — never over the wire!).
Fields§
§name: Cow<'static, str>Key (reverse-DNS convention, dds.sec.xyz).
value: Cow<'static, str>Value (opaque UTF-8 string; interpreted by the plugin).
propagate: booltrue → propagated via SEDP. Default false — never
leak secret strings to remote.
Implementations§
Trait Implementations§
impl Eq for Property
impl StructuralPartialEq for Property
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnsafeUnpin for Property
impl UnwindSafe for Property
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