pub struct UnsupportedItem {
pub what: Unsupported,
pub id: String,
}Available on crate feature
svg-import only.Expand description
One construct the walk could not carry, and where it was.
Fields§
§what: UnsupportedWhich construct.
id: StringThe id attribute of the element it was on, empty when the source
gave it none. Unsupported::Text always carries an empty id: it is
raised from the source XML, where no tree node survives to name.
Trait Implementations§
Source§impl Clone for UnsupportedItem
impl Clone for UnsupportedItem
Source§fn clone(&self) -> UnsupportedItem
fn clone(&self) -> UnsupportedItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnsupportedItem
impl Debug for UnsupportedItem
impl Eq for UnsupportedItem
Source§impl PartialEq for UnsupportedItem
impl PartialEq for UnsupportedItem
impl StructuralPartialEq for UnsupportedItem
Auto Trait Implementations§
impl Freeze for UnsupportedItem
impl RefUnwindSafe for UnsupportedItem
impl Send for UnsupportedItem
impl Sync for UnsupportedItem
impl Unpin for UnsupportedItem
impl UnsafeUnpin for UnsupportedItem
impl UnwindSafe for UnsupportedItem
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