pub struct FieldKey<'de> {
pub name: Cow<'de, str>,
pub location: FieldLocationHint,
pub namespace: Option<Cow<'de, str>>,
}Expand description
Field key with optional namespace (for XML).
Fields§
§name: Cow<'de, str>Field name.
location: FieldLocationHintLocation hint.
namespace: Option<Cow<'de, str>>Optional namespace URI (for XML namespace support).
Implementations§
Trait Implementations§
impl<'de> Eq for FieldKey<'de>
impl<'de> StructuralPartialEq for FieldKey<'de>
Auto Trait Implementations§
impl<'de> Freeze for FieldKey<'de>
impl<'de> RefUnwindSafe for FieldKey<'de>
impl<'de> Send for FieldKey<'de>
impl<'de> Sync for FieldKey<'de>
impl<'de> Unpin for FieldKey<'de>
impl<'de> UnwindSafe for FieldKey<'de>
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