pub struct Property {
pub name: String,
pub params: BTreeMap<String, String>,
pub raw_value: String,
pub prop_group: Option<String>,
}Fields§
§name: StringKey in component.
params: BTreeMap<String, String>Parameters.
raw_value: StringValue as unparsed string.
prop_group: Option<String>Property group. E.g. a contentline like foo.FN:Markus would result in the group being
"foo".
Implementations§
Trait Implementations§
Source§impl From<Property> for Anniversary
impl From<Property> for Anniversary
Source§fn from(p: Property) -> Anniversary
fn from(p: Property) -> Anniversary
Converts to this type from the input type.
Source§impl From<Property> for Categories
impl From<Property> for Categories
Source§fn from(p: Property) -> Categories
fn from(p: Property) -> Categories
Converts to this type from the input type.
Source§impl From<Property> for ClientPidMap
impl From<Property> for ClientPidMap
Source§fn from(p: Property) -> ClientPidMap
fn from(p: Property) -> ClientPidMap
Converts to this type from the input type.
Source§impl From<Property> for Description
impl From<Property> for Description
Source§fn from(p: Property) -> Description
fn from(p: Property) -> Description
Converts to this type from the input type.
Source§impl From<Property> for Organization
impl From<Property> for Organization
Source§fn from(p: Property) -> Organization
fn from(p: Property) -> Organization
Converts to this type from the input type.
Source§impl From<Property> for PhoneNumber
impl From<Property> for PhoneNumber
Source§fn from(p: Property) -> PhoneNumber
fn from(p: Property) -> PhoneNumber
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin 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