pub enum RecursionLevel {
None,
OneLevel,
OneLevelPlusNestedEmptyFolders,
Full,
}Expand description
Specifies whether to include children (OneLevel), all descendants (Full), or None
Variants§
Trait Implementations§
Source§impl Clone for RecursionLevel
impl Clone for RecursionLevel
Source§fn clone(&self) -> RecursionLevel
fn clone(&self) -> RecursionLevel
Returns a duplicate of the value. Read more
1.0.0 · 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 RecursionLevel
impl Debug for RecursionLevel
Source§impl<'de> Deserialize<'de> for RecursionLevel
impl<'de> Deserialize<'de> for RecursionLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RecursionLevel
impl PartialEq for RecursionLevel
Source§impl Serialize for RecursionLevel
impl Serialize for RecursionLevel
impl StructuralPartialEq for RecursionLevel
Auto Trait Implementations§
impl Freeze for RecursionLevel
impl RefUnwindSafe for RecursionLevel
impl Send for RecursionLevel
impl Sync for RecursionLevel
impl Unpin for RecursionLevel
impl UnwindSafe for RecursionLevel
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