pub enum BackboneType {
ResNetFpn,
}Expand description
Backbone variants supported by this crate.
Variants§
ResNetFpn
The ResNetFPN backbone used by the reference LoFTR models.
Trait Implementations§
Source§impl Clone for BackboneType
impl Clone for BackboneType
Source§fn clone(&self) -> BackboneType
fn clone(&self) -> BackboneType
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 BackboneType
Source§impl Debug for BackboneType
impl Debug for BackboneType
impl Eq for BackboneType
Source§impl PartialEq for BackboneType
impl PartialEq for BackboneType
Source§fn eq(&self, other: &BackboneType) -> bool
fn eq(&self, other: &BackboneType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackboneType
Auto Trait Implementations§
impl Freeze for BackboneType
impl RefUnwindSafe for BackboneType
impl Send for BackboneType
impl Sync for BackboneType
impl Unpin for BackboneType
impl UnsafeUnpin for BackboneType
impl UnwindSafe for BackboneType
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