pub struct Provider<'a> {
pub ids: Vec<Id<'a>>,
pub name: Option<Name<'a>>,
pub service: Option<TextElement<'a>>,
pub url: Option<TextElement<'a>>,
pub email: Option<TextElement<'a>>,
pub phone: Option<TextElement<'a>>,
pub contacts: Vec<Contact<'a>>,
pub extensions: Vec<XmlNode<'a>>,
pub attributes: Vec<Attribute<'a>>,
pub span: Span,
}Expand description
ADF <provider> record.
Fields§
§ids: Vec<Id<'a>>Provider identifiers.
name: Option<Name<'a>>Provider name.
service: Option<TextElement<'a>>Provider service name.
url: Option<TextElement<'a>>Provider URL.
email: Option<TextElement<'a>>Provider email.
phone: Option<TextElement<'a>>Provider phone.
contacts: Vec<Contact<'a>>Provider contacts.
extensions: Vec<XmlNode<'a>>Unknown provider XML nodes.
attributes: Vec<Attribute<'a>>Provider attributes.
span: SpanByte span in the original input.
Trait Implementations§
impl<'a> Eq for Provider<'a>
Source§impl<'a> PartialEq for Provider<'a>
impl<'a> PartialEq for Provider<'a>
impl<'a> StructuralPartialEq for Provider<'a>
Auto Trait Implementations§
impl<'a> Freeze for Provider<'a>
impl<'a> RefUnwindSafe for Provider<'a>
impl<'a> Send for Provider<'a>
impl<'a> Sync for Provider<'a>
impl<'a> Unpin for Provider<'a>
impl<'a> UnsafeUnpin for Provider<'a>
impl<'a> UnwindSafe for Provider<'a>
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