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