pub struct DocumentsTarget {
pub documents: Vec<String>,
}Expand description
A target specified by a set of document names.
Fields§
§documents: Vec<String>The names of the documents to retrieve.
Trait Implementations§
Source§impl Clone for DocumentsTarget
impl Clone for DocumentsTarget
Source§fn clone(&self) -> DocumentsTarget
fn clone(&self) -> DocumentsTarget
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 DocumentsTarget
impl Debug for DocumentsTarget
Source§impl<'de> Deserialize<'de> for DocumentsTarget
impl<'de> Deserialize<'de> for DocumentsTarget
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 DocumentsTarget
impl RefUnwindSafe for DocumentsTarget
impl Send for DocumentsTarget
impl Sync for DocumentsTarget
impl Unpin for DocumentsTarget
impl UnwindSafe for DocumentsTarget
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