Enum sdml_parse::load::CatalogEntry
source · pub enum CatalogEntry {
Group(Group),
Item(Item),
}Expand description
An entry in a resolver catalog file is either an item or group of items.
Variants§
Implementations§
Trait Implementations§
source§impl Clone for CatalogEntry
impl Clone for CatalogEntry
source§fn clone(&self) -> CatalogEntry
fn clone(&self) -> CatalogEntry
Returns a copy 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 CatalogEntry
impl Debug for CatalogEntry
source§impl<'de> Deserialize<'de> for CatalogEntry
impl<'de> Deserialize<'de> for CatalogEntry
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 From<Group> for CatalogEntry
impl From<Group> for CatalogEntry
source§impl From<Item> for CatalogEntry
impl From<Item> for CatalogEntry
Auto Trait Implementations§
impl RefUnwindSafe for CatalogEntry
impl Send for CatalogEntry
impl Sync for CatalogEntry
impl Unpin for CatalogEntry
impl UnwindSafe for CatalogEntry
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