pub enum SymbolFilter {
ItemsOnly,
ItemsAndItemElements,
All,
}
Expand description
Determine the depth of traversal functions
Variants§
ItemsOnly
Only extract the top-level item
ItemsAndItemElements
Extract the top-level and its direct children (e.g.: parcelable + fields)
All
Extract all symbols (incl. types)
Trait Implementations§
Source§impl Clone for SymbolFilter
impl Clone for SymbolFilter
Source§fn clone(&self) -> SymbolFilter
fn clone(&self) -> SymbolFilter
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for SymbolFilter
Auto Trait Implementations§
impl Freeze for SymbolFilter
impl RefUnwindSafe for SymbolFilter
impl Send for SymbolFilter
impl Sync for SymbolFilter
impl Unpin for SymbolFilter
impl UnwindSafe for SymbolFilter
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