pub struct BinaryProperty {
pub name: String,
pub value: Vec<u8>,
}Expand description
Spec §7.2.6 Tab.6 — Wire-BinaryProperty_t (name + value als
sequence<octet>).
Fields§
§name: StringProperty-Name (reverse-DNS).
value: Vec<u8>Roher Byte-Wert.
Implementations§
Trait Implementations§
Source§impl Clone for BinaryProperty
impl Clone for BinaryProperty
Source§fn clone(&self) -> BinaryProperty
fn clone(&self) -> BinaryProperty
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 BinaryProperty
impl Debug for BinaryProperty
Source§impl Default for BinaryProperty
impl Default for BinaryProperty
Source§fn default() -> BinaryProperty
fn default() -> BinaryProperty
Returns the “default value” for a type. Read more
Source§impl PartialEq for BinaryProperty
impl PartialEq for BinaryProperty
Source§fn eq(&self, other: &BinaryProperty) -> bool
fn eq(&self, other: &BinaryProperty) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BinaryProperty
impl StructuralPartialEq for BinaryProperty
Auto Trait Implementations§
impl Freeze for BinaryProperty
impl RefUnwindSafe for BinaryProperty
impl Send for BinaryProperty
impl Sync for BinaryProperty
impl Unpin for BinaryProperty
impl UnsafeUnpin for BinaryProperty
impl UnwindSafe for BinaryProperty
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