pub enum CatalogVersion {
Unknown,
Lr2,
Lr3,
Lr4,
Lr6,
}Expand description
Catalog version.
Variants§
Unknown
Unknown version
Lr2
Lightroom 2.x catalog.
Lr3
Lightroom 3.x catalog. Unhandled.
Lr4
Lightroom 4.x catalog.
Lr6
Lightroom 6.x catalog.
Implementations§
Source§impl CatalogVersion
impl CatalogVersion
Sourcepub fn is_supported(&self) -> bool
pub fn is_supported(&self) -> bool
Return if we support this catalog version
Trait Implementations§
Source§impl Clone for CatalogVersion
impl Clone for CatalogVersion
Source§fn clone(&self) -> CatalogVersion
fn clone(&self) -> CatalogVersion
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 moreimpl Copy for CatalogVersion
Source§impl Debug for CatalogVersion
impl Debug for CatalogVersion
impl Eq for CatalogVersion
Source§impl PartialEq for CatalogVersion
impl PartialEq for CatalogVersion
Source§fn eq(&self, other: &CatalogVersion) -> bool
fn eq(&self, other: &CatalogVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogVersion
Auto Trait Implementations§
impl Freeze for CatalogVersion
impl RefUnwindSafe for CatalogVersion
impl Send for CatalogVersion
impl Sync for CatalogVersion
impl Unpin for CatalogVersion
impl UnsafeUnpin for CatalogVersion
impl UnwindSafe for CatalogVersion
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