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,
}Fields§
§ids: Vec<Id<'a>>§name: Option<Name<'a>>§service: Option<TextElement<'a>>§url: Option<TextElement<'a>>§email: Option<TextElement<'a>>§phone: Option<TextElement<'a>>§contacts: Vec<Contact<'a>>§extensions: Vec<XmlNode<'a>>§attributes: Vec<Attribute<'a>>§span: SpanTrait Implementations§
Source§impl<'a> PartialEq for Provider<'a>
impl<'a> PartialEq for Provider<'a>
impl<'a> Eq 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