pub struct UpdateCollectionRequest {
pub name: Option<String>,
pub description: Option<String>,
}Expand description
Request to update a collection.
Fields§
§name: Option<String>Optional name update.
description: Option<String>Optional description update.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateCollectionRequest
impl Clone for UpdateCollectionRequest
Source§fn clone(&self) -> UpdateCollectionRequest
fn clone(&self) -> UpdateCollectionRequest
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 UpdateCollectionRequest
impl Debug for UpdateCollectionRequest
Source§impl Default for UpdateCollectionRequest
impl Default for UpdateCollectionRequest
Auto Trait Implementations§
impl Freeze for UpdateCollectionRequest
impl RefUnwindSafe for UpdateCollectionRequest
impl Send for UpdateCollectionRequest
impl Sync for UpdateCollectionRequest
impl Unpin for UpdateCollectionRequest
impl UnsafeUnpin for UpdateCollectionRequest
impl UnwindSafe for UpdateCollectionRequest
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