pub struct AdSystem<'a> {
pub version: Option<Cow<'a, str>>,
pub name: Cow<'a, str>,
}Expand description
Indicates source ad server.
<xs:element name="AdSystem" minOccurs="1" maxOccurs="1">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="version" type="xs:string" use="optional">
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>Fields§
§version: Option<Cow<'a, str>>Internal version used by ad system.
name: Cow<'a, str>A string that provides the name of the ad server that returned the ad.
Trait Implementations§
impl<'a> StructuralPartialEq for AdSystem<'a>
Auto Trait Implementations§
impl<'a> Freeze for AdSystem<'a>
impl<'a> RefUnwindSafe for AdSystem<'a>
impl<'a> Send for AdSystem<'a>
impl<'a> Sync for AdSystem<'a>
impl<'a> Unpin for AdSystem<'a>
impl<'a> UnwindSafe for AdSystem<'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