pub enum CatalogSource {
Path(PathBuf),
Url(String),
Bytes(Vec<u8>),
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for CatalogSource
impl Clone for CatalogSource
Source§fn clone(&self) -> CatalogSource
fn clone(&self) -> CatalogSource
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 CatalogSource
impl Debug for CatalogSource
impl Eq for CatalogSource
Source§impl From<CatalogSource> for LibSourceSpec
impl From<CatalogSource> for LibSourceSpec
Source§fn from(source: CatalogSource) -> Self
fn from(source: CatalogSource) -> Self
Converts to this type from the input type.
Source§impl From<CatalogSource> for LibSource
impl From<CatalogSource> for LibSource
Source§fn from(source: CatalogSource) -> Self
fn from(source: CatalogSource) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CatalogSource
impl PartialEq for CatalogSource
Source§fn eq(&self, other: &CatalogSource) -> bool
fn eq(&self, other: &CatalogSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogSource
Auto Trait Implementations§
impl Freeze for CatalogSource
impl RefUnwindSafe for CatalogSource
impl Send for CatalogSource
impl Sync for CatalogSource
impl Unpin for CatalogSource
impl UnsafeUnpin for CatalogSource
impl UnwindSafe for CatalogSource
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