#[non_exhaustive]pub enum ChessRing {
Canonical,
Broad,
}Expand description
ChESS sampling ring radius. Selects the r=5 (canonical) or r=10
(broad) ring used by the dense response kernel.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Canonical
Paper-default radius-5 ring (16 samples).
Broad
Radius-10 ring. Larger support window for callers that want the detector to sample farther from the candidate center.
Trait Implementations§
impl Copy for ChessRing
Source§impl<'de> Deserialize<'de> for ChessRing
impl<'de> Deserialize<'de> for ChessRing
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
impl Eq for ChessRing
impl StructuralPartialEq for ChessRing
Auto Trait Implementations§
impl Freeze for ChessRing
impl RefUnwindSafe for ChessRing
impl Send for ChessRing
impl Sync for ChessRing
impl Unpin for ChessRing
impl UnsafeUnpin for ChessRing
impl UnwindSafe for ChessRing
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