pub struct Property {
pub ns: Namespace,
pub local: &'static str,
}Expand description
A WebDAV property identifier: an XML Namespace plus a local name
(RFC 4918 §15).
Each RFC layer owns its own vocabulary as const values (generic
DAV properties in crate::rfc4918, calendar ones in
crate::rfc4791, card ones in crate::rfc6352); there is no
central enum. Construct an ad-hoc value for any property the
constants do not cover.
Fields§
§ns: NamespaceXML namespace.
local: &'static strLocal element name (e.g. displayname).
Trait Implementations§
impl Copy for Property
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