pub struct Property {
pub name: Cow<'static, str>,
pub value: Cow<'static, str>,
pub propagate: bool,
}Expand description
Ein einzelnes Property: Name + Value.
propagate=true wird an Remote-Participants via SEDP gesendet (z.B.
dds.sec.permissions_hash); false bleibt lokal (z.B.
dds.sec.auth.private_key_path — nie ueber die Wire!).
Fields§
§name: Cow<'static, str>Key (reverse-DNS Convention, dds.sec.xyz).
value: Cow<'static, str>Wert (opaker UTF-8-String; Plugin interpretiert).
propagate: booltrue → via SEDP propagiert. Default false — niemals
geheimnisvolle Strings an Remote leaken.
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