pub struct XhtmlDt {
pub id: Option<String>,
pub extension: Option<Vec<Extension>>,
pub value: Option<Xhtml>,
}
Fields§
§id: Option<String>
xml:id (or equivalent in JSON)
extension: Option<Vec<Extension>>
Additional content defined by implementations
value: Option<Xhtml>
Actual xhtml
Trait Implementations§
Source§impl Convert for XhtmlDt
impl Convert for XhtmlDt
fn to_integer(&self) -> Result<Integer>
fn to_decimal(&self) -> Result<Decimal>
fn to_strings(&self) -> Result<String>
fn to_datetime(&self) -> Result<DateTime>
fn to_boolean(&self) -> Result<Boolean>
Source§impl<'de> Deserialize<'de> for XhtmlDt
impl<'de> Deserialize<'de> for XhtmlDt
fn deserialize<De>(deserializer: De) -> Result<Self>where
De: Deserializer<'de>,
Source§impl Executor for XhtmlDt
impl Executor for XhtmlDt
fn element(&self, symbol: &String, index: &Option<usize>) -> Result<Collection>
fn to_collection(&self, _index: &Option<usize>) -> Collection
fn child(&self, _index: usize) -> Result<Collection>
impl DataType for XhtmlDt
Auto Trait Implementations§
impl Freeze for XhtmlDt
impl RefUnwindSafe for XhtmlDt
impl Send for XhtmlDt
impl Sync for XhtmlDt
impl Unpin for XhtmlDt
impl UnwindSafe for XhtmlDt
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