pub struct CatalogEntryResponse {
pub catalog_id: String,
pub title: SafeMetadata,
pub summary: SafeMetadata,
}Expand description
Child catalog entry returned by lookup responses.
Fields§
§catalog_id: String§title: SafeMetadata§summary: SafeMetadataTrait Implementations§
Source§impl Clone for CatalogEntryResponse
impl Clone for CatalogEntryResponse
Source§fn clone(&self) -> CatalogEntryResponse
fn clone(&self) -> CatalogEntryResponse
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 CatalogEntryResponse
impl Debug for CatalogEntryResponse
Source§impl<'de> Deserialize<'de> for CatalogEntryResponse
impl<'de> Deserialize<'de> for CatalogEntryResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogEntryResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogEntryResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CatalogEntryResponse
Source§impl PartialEq for CatalogEntryResponse
impl PartialEq for CatalogEntryResponse
Source§fn eq(&self, other: &CatalogEntryResponse) -> bool
fn eq(&self, other: &CatalogEntryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CatalogEntryResponse
impl Serialize for CatalogEntryResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CatalogEntryResponse
Auto Trait Implementations§
impl Freeze for CatalogEntryResponse
impl RefUnwindSafe for CatalogEntryResponse
impl Send for CatalogEntryResponse
impl Sync for CatalogEntryResponse
impl Unpin for CatalogEntryResponse
impl UnsafeUnpin for CatalogEntryResponse
impl UnwindSafe for CatalogEntryResponse
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