pub struct SmaliNode {
pub tag: Option<ConstStr>,
pub content: Vec<SmaliToken>,
pub offset_hint: Option<u32>,
pub children: Vec<SmaliNode>,
pub end_tag: Option<ConstStr>,
}
Fields§
§tag: Option<ConstStr>
§content: Vec<SmaliToken>
§offset_hint: Option<u32>
§children: Vec<SmaliNode>
§end_tag: Option<ConstStr>
Implementations§
Trait Implementations§
impl Eq for SmaliNode
impl StructuralPartialEq for SmaliNode
Auto Trait Implementations§
impl Freeze for SmaliNode
impl RefUnwindSafe for SmaliNode
impl Send for SmaliNode
impl Sync for SmaliNode
impl Unpin for SmaliNode
impl UnwindSafe for SmaliNode
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