pub struct CatalogUpdate {
pub provider: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub url: Option<String>,
pub settings: Option<CatalogSettings>,
}Fields§
§provider: Option<String>Attach a provider to a catalog using the provider id.
title: Option<String>Updates the catalog title.
description: Option<String>Updates the catalog description.
url: Option<String>Updates the catalog url.
settings: Option<CatalogSettings>Updates the catalog settings.
Trait Implementations§
Source§impl Clone for CatalogUpdate
impl Clone for CatalogUpdate
Source§fn clone(&self) -> CatalogUpdate
fn clone(&self) -> CatalogUpdate
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 CatalogUpdate
impl Debug for CatalogUpdate
Source§impl<'de> Deserialize<'de> for CatalogUpdate
impl<'de> Deserialize<'de> for CatalogUpdate
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 CatalogUpdate
impl RefUnwindSafe for CatalogUpdate
impl Send for CatalogUpdate
impl Sync for CatalogUpdate
impl Unpin for CatalogUpdate
impl UnsafeUnpin for CatalogUpdate
impl UnwindSafe for CatalogUpdate
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