pub struct PropertyList { /* private fields */ }Expand description
Native representation of a list of Property objects
Implementations§
Source§impl PropertyList
impl PropertyList
pub fn properties(&self) -> &[Property]
pub fn into_builder(self) -> PropertyListBuilder
Trait Implementations§
Source§impl Clone for PropertyList
impl Clone for PropertyList
Source§fn clone(&self) -> PropertyList
fn clone(&self) -> PropertyList
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 PropertyList
impl Debug for PropertyList
Source§impl FromBytes<PropertyList> for PropertyList
impl FromBytes<PropertyList> for PropertyList
fn from_bytes(bytes: &[u8]) -> Result<PropertyList, ProtoConversionError>
Source§impl FromNative<PropertyList> for PropertyList
impl FromNative<PropertyList> for PropertyList
fn from_native(native: PropertyList) -> Result<Self, ProtoConversionError>
Source§impl FromProto<PropertyList> for PropertyList
impl FromProto<PropertyList> for PropertyList
fn from_proto(proto: PropertyList) -> Result<Self, ProtoConversionError>
Source§impl IntoBytes for PropertyList
impl IntoBytes for PropertyList
fn into_bytes(self) -> Result<Vec<u8>, ProtoConversionError>
Source§impl IntoNative<PropertyList> for PropertyList
impl IntoNative<PropertyList> for PropertyList
fn into_native(self) -> Result<T, ProtoConversionError>
Source§impl IntoProto<PropertyList> for PropertyList
impl IntoProto<PropertyList> for PropertyList
fn into_proto(self) -> Result<T, ProtoConversionError>
Source§impl PartialEq for PropertyList
impl PartialEq for PropertyList
impl StructuralPartialEq for PropertyList
Auto Trait Implementations§
impl Freeze for PropertyList
impl RefUnwindSafe for PropertyList
impl Send for PropertyList
impl Sync for PropertyList
impl Unpin for PropertyList
impl UnsafeUnpin for PropertyList
impl UnwindSafe for PropertyList
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