pub struct RetrievalFile {
pub path: String,
pub records: u64,
}Expand description
Data type for retrieval file.
Fields§
§path: StringFilesystem path for this value.
records: u64The records value.
Trait Implementations§
Source§impl Clone for RetrievalFile
impl Clone for RetrievalFile
Source§fn clone(&self) -> RetrievalFile
fn clone(&self) -> RetrievalFile
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 RetrievalFile
impl Debug for RetrievalFile
Source§impl<'de> Deserialize<'de> for RetrievalFile
impl<'de> Deserialize<'de> for RetrievalFile
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
impl Eq for RetrievalFile
Source§impl PartialEq for RetrievalFile
impl PartialEq for RetrievalFile
Source§fn eq(&self, other: &RetrievalFile) -> bool
fn eq(&self, other: &RetrievalFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RetrievalFile
impl Serialize for RetrievalFile
impl StructuralPartialEq for RetrievalFile
Auto Trait Implementations§
impl Freeze for RetrievalFile
impl RefUnwindSafe for RetrievalFile
impl Send for RetrievalFile
impl Sync for RetrievalFile
impl Unpin for RetrievalFile
impl UnsafeUnpin for RetrievalFile
impl UnwindSafe for RetrievalFile
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