pub struct ScanResponse {
pub files_found: u32,
pub files_queued: u32,
pub files_skipped: u32,
}Expand description
Response from directory scanning.
Fields§
§files_found: u32§files_queued: u32§files_skipped: u32Trait Implementations§
Source§impl Clone for ScanResponse
impl Clone for ScanResponse
Source§fn clone(&self) -> ScanResponse
fn clone(&self) -> ScanResponse
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 ScanResponse
impl Debug for ScanResponse
Source§impl<'de> Deserialize<'de> for ScanResponse
impl<'de> Deserialize<'de> for ScanResponse
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 ScanResponse
impl RefUnwindSafe for ScanResponse
impl Send for ScanResponse
impl Sync for ScanResponse
impl Unpin for ScanResponse
impl UnsafeUnpin for ScanResponse
impl UnwindSafe for ScanResponse
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