pub struct LobeInspectionResult {
pub root: PathBuf,
pub max_files: Option<u64>,
pub max_bytes: Option<u64>,
pub max_depth: Option<usize>,
pub entries: Vec<LobeInspectionEntry>,
pub files_seen: u64,
pub bytes_read: u64,
pub truncated: bool,
pub truncation_reason: Option<String>,
}Fields§
§root: PathBuf§max_files: Option<u64>§max_bytes: Option<u64>§max_depth: Option<usize>§entries: Vec<LobeInspectionEntry>§files_seen: u64§bytes_read: u64§truncated: bool§truncation_reason: Option<String>Trait Implementations§
Source§impl Clone for LobeInspectionResult
impl Clone for LobeInspectionResult
Source§fn clone(&self) -> LobeInspectionResult
fn clone(&self) -> LobeInspectionResult
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 LobeInspectionResult
impl Debug for LobeInspectionResult
Source§impl<'de> Deserialize<'de> for LobeInspectionResult
impl<'de> Deserialize<'de> for LobeInspectionResult
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
Auto Trait Implementations§
impl Freeze for LobeInspectionResult
impl RefUnwindSafe for LobeInspectionResult
impl Send for LobeInspectionResult
impl Sync for LobeInspectionResult
impl Unpin for LobeInspectionResult
impl UnsafeUnpin for LobeInspectionResult
impl UnwindSafe for LobeInspectionResult
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