pub struct CollectionUpdateParams {
pub id: String,
pub name: Option<String>,
pub description: Option<String>,
pub graph: Option<Value>,
}Fields§
§id: String§name: Option<String>§description: Option<String>§graph: Option<Value>Trait Implementations§
Source§impl Clone for CollectionUpdateParams
impl Clone for CollectionUpdateParams
Source§fn clone(&self) -> CollectionUpdateParams
fn clone(&self) -> CollectionUpdateParams
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 CollectionUpdateParams
impl Debug for CollectionUpdateParams
Source§impl<'de> Deserialize<'de> for CollectionUpdateParams
impl<'de> Deserialize<'de> for CollectionUpdateParams
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 CollectionUpdateParams
impl RefUnwindSafe for CollectionUpdateParams
impl Send for CollectionUpdateParams
impl Sync for CollectionUpdateParams
impl Unpin for CollectionUpdateParams
impl UnsafeUnpin for CollectionUpdateParams
impl UnwindSafe for CollectionUpdateParams
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