pub struct AddCollectionRequest {
pub path: PathBuf,
pub space: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub extensions: Option<Vec<String>>,
pub no_index: bool,
}Fields§
§path: PathBuf§space: Option<String>§name: Option<String>§description: Option<String>§extensions: Option<Vec<String>>§no_index: boolTrait Implementations§
Source§impl Clone for AddCollectionRequest
impl Clone for AddCollectionRequest
Source§fn clone(&self) -> AddCollectionRequest
fn clone(&self) -> AddCollectionRequest
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 AddCollectionRequest
impl Debug for AddCollectionRequest
Source§impl<'de> Deserialize<'de> for AddCollectionRequest
impl<'de> Deserialize<'de> for AddCollectionRequest
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 AddCollectionRequest
impl PartialEq for AddCollectionRequest
Source§impl Serialize for AddCollectionRequest
impl Serialize for AddCollectionRequest
impl StructuralPartialEq for AddCollectionRequest
Auto Trait Implementations§
impl Freeze for AddCollectionRequest
impl RefUnwindSafe for AddCollectionRequest
impl Send for AddCollectionRequest
impl Sync for AddCollectionRequest
impl Unpin for AddCollectionRequest
impl UnsafeUnpin for AddCollectionRequest
impl UnwindSafe for AddCollectionRequest
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